git
前言
git 是什么?
git 是目前世界上最先进的分布式版本控制系统(没有之一),Git 是一个开源的分布式版本控制系统,能够无效、高速地解决从很小到十分大的我的项目版本治理。
目录
- git 是什么
-
git 指令
- git 根本命令
- git 四大工作区命令
- git 查看 config 配置
在学习 git 指令之前, 咱们能够先在 D 盘 创立一个文件夹 gitcode 创立后在文件下右键关上 Git Bash Here 就能够进入接下来的学习了!
git 指令
cd ..:退一步以后文件(cd 须要空格)
cd ..
cd 抉择的文件:进去一个文件
cd gitcode
pwd:显示以后门路
pwd
ls(ll):显示所有文件 ll:能够看到更多
ls / ll
touch 文件名 + 后缀:新建一个文件
touch test.html
rm 删除的文件:删除文件
rm test.html
mkdir 文件夹名:新建一个文件夹
mkdir div
help:帮忙文档
help
exit:退出
exit
git 命令
git 四大工作区
工作目录: – >add – > 暂存区 -> commit -> 资源区 -> push 近程仓库
$ git init // 初始化一个 git 仓库
$ git status // 跟踪文件
$ git add "文件" // 将文件增加到 暂存区
$ git commit -m "" // 将文件增加到资源库(本地仓库)
git- 查看 config 配置信息
config 配置有 system(零碎) 级别 global(用户级别)
和 local (以后仓库). 三个设置 先从 system > global > local
底层设置会笼罩顶层配置, 能够别离应用 system-global-local 定位到配置文件
config 配置指令:
git config
查看零碎 config
git config --system --list
查看以后用户 (global) 配置
git config --global --list
查看以后仓库配置信息
git config --local --list
设置 username
git config --global user.name "用户名" <- 本人取
如: git config --global user.name "myname"
设置 user.email
git config --global user.email "xxxx@qq.com" <- 本人罕用的邮箱
git config --global user.email "test@qq.com"