下面是我整理的常用 Git 命令清单。几个专用名词的译名如下。
- Workspace:工作区
- Index / Stage:暂存区
- Repository:仓库区(或本地仓库)
- Remote:远程仓库
一、新建代码库
# 在本地新建一个Git代码库
$ git init 初始化一个Git库
或 $ git init [project-name] 新建一个目录,将其初始化为Git代码库
# 增加远程服务器端地址, origin代表设置远程服务器端别名,可以修改,默认设置为origin,
在使用git init 创建本地Git代码库后,需要使用该语句绑定远程服务器url
$ git remote add origin [url]
# 从远程仓库克隆一个本地仓库 如果已有远程服务器并且有现有代码,则使用该语句
$ git clone [url]
二、 配置
Git的设置文件为.gitconfig,它可以在用户主目录下(全局配置),也可以在项目目录下(项目配置)。
# 显示当前的Git 配置
$ git config --list
#编辑Git配置文件
git config -e [--global]
#设置提交代码时的用户信息
$ git config [--global] user.name '[name]'
$ git config [--global] user.email '[email]'
三、增加/删除文件到暂存区
# 添加指定文件到暂存区
$ git add [file1] [file2] ...
# 添加指定目录到暂存区,包括子目录
$ git add [dir]
# 添加修改过的所有文件到暂存区
$ git add .
# 删除工作区文件,并且将这次删除放入暂存区
$ git rm [file1] [file2] ...
#保留工作区文件,并且将这次删除放入暂存区
$ git rm --cache [file]
# 改名文件,并且将这个改名放入暂存区
$ git mv [file-original] [file-renamed]
四、 代码提交到仓库
# 提交暂存区到仓库区
$ git commit -m [message]
#提交暂存区的指定文件到仓库区
$ git commit -m [file1] [file2]... -m [message]
# 使用一次新的commit,替代上一次提交,如果代码没有任何新变化,则用来改写上一次commit的提交信息
$ git commit --amend -m [message]
#重做上一次commit ,并包括指定文件的新变化
$ git commit --amend [file1] [file2]
五、分支
#列出所有本地分支
$ git branch
#列出所有远程分支
$ git branch -r
#列出所有本地分支和远程分支
$ git branch -a
#新建一个分支,但依然停留在当前分支上
$ git branch [local-branch-name]
#新建一个分支,并切换到该分支
$ git checkout -b [local-branch-name]
#新建一个分支,与指定的远程分支建立追踪关系
$ git branch --track [local-branch-name] [remotename/remotebranch]
# 建立追踪关系,在现有分支与指定的远程分支之间
$ git branch --set-upstream-to = [remotename]/[remote_branch] [local-branch-name]
#切换到指定分支,并更新工作区
$ git checkout [local-branch-name]
#切换到上一分支
$ git checkout -
#合并指定分支到当前分支
$ git merge [local-branch-name]
# 选择一个commit ,合并进当前分支
$ git cherry-pick [commit]
#删除本地分支
$ git branch -d [local-branch-name]
#删除远程分支
$ git branch -dr [remotename/remote-branch-name]
六、标签
#列出所有tag
$ git tag
#新建一个tag在当前commit
$ git tag [tag]
#新建一个tag在指定commit
$ git tag [tag] [commit]
#创建带有说明的标签
$ git tag -a [tag] -m 'comment' [commit]
#查看某个tag信息
$ git show [tag]
#删除本地tag
$ git tag -d [tag]
#删除远程tag
$ git push origin :refs/tags/[tagName]
# 提交指定tag
$ git push [remote] [tag]
# 提交所有tag
$ git push [remote] --tags
# 新建一个分支,指向某个tag
$ git checkout -b [local-branch] [tag]
七、查看信息
#显示有变更的文件
$ git status
#显示当前分支的版本历史
$ git log 或 git log --graph --pretty=oneline --abbrev-commit
#显示commit历史,以及每次commit发生变更的文件
$ git log --stat
#显示过去5次提交
$ git log - 5 --pretty --oneline
# 显示指定文件是什么人在什么时间修改过
$ git blame [file]
# 显示暂存区和工作区的代码差异
$ git diff [file]
# 显示暂存区和上一个commit的差异
$ git diff --cached [file]
# 显示工作区与当前分支最新commit之间的差异
$ git diff HEAD 或 $ git diff HEAD -- [file]
# 显示今天你写了多少行代码
$ git diff --shortstat "@{0 day ago}"
# 显示某次提交的元数据和内容变化
$ git show [commit]
# 显示当前分支的最近几次提交
$ git reflog
# 从本地master拉取代码更新当前分支: branch 一般为master
$ git rebase [branch]
八、远程同步
# 下载远程仓库的所有变动
$ git fetch [remote]
# 显示所有远程仓库
$ git remote -v 或 查看远程信息 $git remote
# 显示某个远程仓库的信息
$ git remote show [remote]
# 增加一个新的远程仓库,并命名
$ git remote add [remote] [url]
#取回远程仓库的变化,并与本地分支合并
$git pull [remote] [localbranch]
# 上传本地指定非分之到远程仓库
$ git push [remote] [localbranch]
# 推送到远程分支 并绑定分支
$ git push --set-upstream [remote] [localbranch]
# 强行推送当前分支到远程仓库, 即使有冲突
$ git push [remote] --force
# 推送所有分支到远程仓库
$ git push [remote] --all
九、 撤销
$ git checkout -- [file] 或者 git checkout [file] 一种是将文件自修改后还没有被放到暂存区,现在,撤销修改就回到和版本库一模一样的状态;一种是将文件已经添加到暂存区后,又作了修改,现在,撤销修改就回到添加到暂存区后的状态。总之,就是让这个文件回到最近一次git commit或git add时的状态。
# 版本回退(回退到当前版本/回退到上一个版本/回退到前100个版本)
$ git reset --hard HEAD/HEAD^/HEAD~100 或 $ git reset --hard [commit] 回退到某个版本
# 文件已经提交到暂存区,可以把暂存区的修改撤消掉,变成工作区有修改
$ git reset HEAD [file]
# 重置当前分支的指针为指定commit, 同时重置暂存区,但工作区不变
$ git reset [commit]
# 重置当前HEAD 为指定commit,但保持暂存区和工作区不变
$git reset --keep [commit]
# 暂时将未提交的变化移除,稍后再移入
#移除还未提交的变化代码
$ git stash
#查看移除的代码
$ git stash list
#再次移入
$ git stash pop
#忽略文件不进行提交
git update-index --assume-unchanged [–path]
#可以取消忽略文件
git update-index --no-assume-unchanged [–path]