一、添加文件#
# 添加当前文件夹下的所有文件
git add .
# 添加修改的文件,不包括新增的文件
git add -u
二、提交#
# 提交消息到仓库区
git commit -m ''
# 修改最近一次的提交
git commit --amend
三、分支#
# 新建一个分支
git branch [new_branch]
# 新建一个分支并切换到这个新分支
git switch -c [new]
# 新建一个空分支
git switch --orphan [branch]
# 删除分支
git branch -d [branch]
# 切换分支
git switch [branch]
# 分支重命名
git branch -m [old] [new]
# 列出本地所有分支
git branch
四、远程分支#
# 列出远程所有分支
git branch -r
# 拉取远程分支到本地的一个新分支
git switch -c [branch] origin/[branch]
五、日志#
# 查看所有提交信息
git log
# 用户名为组显示提交记录
git shortlog
# 各用户提交数量,降序排列
git shortlog -n -s
六、追责#
# 查看文件每行的提交信息
git blame [file]
七、暂存#
# 暂存当前分支的修改
git stash
# 暂存当前分支的修改,包括未追踪文件
git stash -u
# 将最后一次暂存,应用到当前分支
git stash apply
# 删除最近一个暂存,并应用到当前分支
git stash pop
# 列出所有的暂存记录
git stash list
# 删除所有的暂存
git stash clear
八、差异#
# 查看工作区与暂存区的差异
git diff
# 查看暂存区的差异
git diff --cached
九、远程同步#
# 拉取远程分支的提交
git pull origin [branch]
# 推送本地分支到远程
git push origin [branch]
# 添加一个远程仓库的追踪
git remote add [shortname] [url]
十、克隆#
# 克隆一个远程仓库(默认主分支)
git clone [url]
# 克隆一个远程仓库,自定义分支
git clone -b [branch] [url]
# 克隆一个远程仓库,只保留最后一次提交
git clone --depth=1 [url]
# 克隆一个远程仓库,包括子模块
git clone [url] --recurse-submodules
十一、配置#
# git配置文件位置
Git/etc/config # system
vim ~/.gitconfig # global
vim .git/config # local
# 设置用户名邮箱
git config [--global] user.name yourname
git config [--global] user.email youremail
# 设置别名
git config [--global] alias.st status
# 取消别名
git config [--global] --unset alias.st
十二、文件移动与重命名#
# 移动
git mv file dir/
# file1重命名为file2
git mv file1 file2
十三、文件删除#
# 删除文件并添加至索引区
git rm [file]
# 删除文件并将文件设置为未追踪
git rm --cached [file]
十四、文件撤销#
# 暂存区的文件撤销到工作区
git restore --staged [file]
# 工作区的文件撤销到仓库区(丢弃修改)
# (此命令对暂存区的文件不生效)
git restore [file]
十五、版本回退#
# 回退操作
git reset [mode] [commit]
# 回退到指定版本,修改还在暂存区
git reset --staged [commit]
# 回退到指定提交,修改还在工作区
git reset [commit]
# 回退到指定提交,三区一致
git reset --hard [commit]
十六、状态#
十七、子模块#
# 添加子模块到指定文件夹
git submodule add [url] [dir]
十八、变基#
# 将代码变基到指定分支
git rebase [branch]
# 交互式变基
git rebase -i HEAD~num
十九、标签#
# 增加标签
git tag [name]
# 删除标签
git tag -d [name]
# 修改标签名字
mv .git/refs/tags/1.9.1 .git/refs/tags/v1.9.1
# 列出所有标签
git tag
二十、挑选提交#
# 挑选指定的提交
git cherry-pick [commit]
# 挑选指定的多个提交
git cherry-pick [commit1] [commit2]