Git cheat sheet 让你不用再去记所有的 git 命令。
欢迎贡献内容、更新语法错误,也欢迎添加你母语版本的 Git cheat sheet。
$ git config --list
$ git config --local --list
$ git config --global --list
$ git config --system --list
$ git config --global user.name "[firstname lastname]"
$ git config --global user.email "[valid-email]"
$ git config --global color.ui auto
$ git config --global core.editor vi
<repo>/.git/config
~/.gitconfig
/etc/gitconfig
# 通过 SSH
$ git clone ssh://[email protected]/repo.git
# 通过 HTTP
$ git clone http://domain.com/user/repo.git
$ git init
$ git init <directory>
$ git status
$ git diff
$ git diff <file>
$ git add .
$ git add -p <file>
$ git add <filename1> <filename2>
$ git commit -a
$ git commit
$ git commit -m 'message here'
$ git commit --date="`date --date='n day ago'`" -am "Commit Message"
请勿修改已发布的提交记录!
$ git commit --amend
GIT_COMMITTER_DATE="date" git commit --amend
$ git commit --amend --date="date"
$ git stash
$ git checkout branch2
$ git stash pop
$ git stash apply
$ git stash drop
$ git grep "Hello"
$ git grep "Hello" v2.5
$ git log -S 'keyword'
$ git log -S 'keyword' --pickaxe-regex
$ git log
$ git log --oneline
$ git log --author="username"
$ git log -p <file>
$ git log --oneline <origin/master>..<remote/master> --left-right
$ git blame <file>
$ git reflog show
$ git reflog delete
将 Index.txt 重命名为 Index.html
$ git mv Index.txt Index.html
$ git branch
$ git branch -a
$ git branch -r
$ git checkout <branch>
$ git checkout <branch> -- <filename>
$ git checkout -b <branch>
$ git checkout -
$ git checkout -b <new_branch> <existing_branch>
$ git checkout <commit-hash> -b <new_branch_name>
$ git branch <new-branch>
$ git branch --track <new-branch> <remote-branch>
$ git branch -d <branch>
将会丢失未合并的修改!
$ git branch -D <branch>
$ git tag <tag-name>
$ git tag -a <tag-name>
$ git tag <tag-name> -am 'message here'
$ git tag
$ git tag -n
$ git remote -v
$ git remote show <remote>
$ git remote add <remote> <url>
$ git remote rename <remote> <new_remote>
$ git remote rm <remote>
注意:git remote rm 不会从服务器上删除远程仓库。它只是从本地仓库中删除远程文件及其引用。
$ git fetch <remote>
$ git remote pull <remote> <url>
$ git pull origin master
git pull --rebase <remote> <branch>
$ git push remote <remote> <branch>
$ git push <remote> :<branch> (since Git v1.5.0)
或
$ git push <remote> --delete <branch> (since Git v1.7.0)
$ git push --tags
$ git merge <branch>
$ git branch --merged
请勿重置已发布的提交!
$ git rebase <branch>
$ git rebase --abort
$ git rebase --continue
$ git config --global merge.tool meld
$ git mergetool
$ git add <resolved-file>
$ git rm <resolved-file>
$ git rebase -i <commit-just-before-first>
把下面的内容:
pick <commit_id>
pick <commit_id2>
pick <commit_id3>
替换为:
pick <commit_id>
squash <commit_id2>
squash <commit_id3>
$ git reset --hard HEAD
$ git reset HEAD
$ git checkout HEAD <file>
$ git revert <commit>
$ git reset --hard <commit>
git reset --hard <remote/branch> e.g., upstream/master, origin/my-feature
$ git reset <commit>
$ git reset --keep <commit>
$ git rm -r --cached .
$ git add .
$ git commit -m "remove xyz file"
- 你需要有一个可以工作的 git 作为前提。
- Git flow 可以工作在 OSX,Linux 和 Windows 之下。
$ brew install git-flow
$ port install git-flow
$ apt-get install git-flow
安装 git-flow,你需要 wget 和 util-linux。
$ wget -q -O - --no-check-certificate https://github.com/nvie/gitflow/raw/develop/contrib/gitflow-installer.sh | bash
- 为了自定义你的项目,Git flow 需要初始化。
- 使用 git-flow,从初始化一个现有的 git 库内开始。
- 初始化,你必须回答几个关于分支的命名约定的问题。建议使用默认值。
git flow init
- 为即将发布的版本开发新功能特性。
- 这通常只存在于开发者的仓库中。
下面操作创建了一个基于 'develop' 的新特性分支,并切换到该分支。
git flow feature start MYFEATURE
完成开发新特性。这个动作执行以下操作:
- 将 MYFEATURE 分支合并到 'develop'
- 删除这个新特性分支
- 切换回 'develop' 分支
git flow feature finish MYFEATURE
- 你是否合作开发一项新特性?
- 发布新特性分支到远程服务器,以便其它用户使用该分支。
git flow feature publish MYFEATURE
获取由其它用户发布的新特性分支。
git flow feature pull origin MYFEATURE
通过下面的命令追溯远程上的特性
git flow feature track MYFEATURE
- 支持一个新的用于生产环境的发布版本。
- 允许修复小问题,并为发布版本准备元数据。
- 使用 git flow release 命令创建 release 版本。
- 'release' 分支基于 'develop' 分支创建。
- 你可以选择提供一个 [BASE] 参数,即提交记录的 sha-1 hash 值,来开启 release 分支。
- 这个提交记录的 sha-1 hash 值必须是 'develop' 分支下的。
git flow release start RELEASE [BASE]
明智的做法是在创建 release 分支之后立即发布,允许其它用户向这个 release 分支提交内容。使用类似发布新特性的命令:
git flow release publish RELEASE
(你可以通过 git flow release track RELEASE
命令追溯远程的 release 版本)
完成 release 版本是一个 git 分支的重要操作之一。它执行以下几个动作:
- 归并 release 分支到 'master' 分支
- 用 release 分支名打标签
- 归并 release 分支到 'develop' 分支
- 移除 release 分支
git flow release finish RELEASE
不要忘记使用 git push --tags
将标签推送到远程。
热修复来自这样的需求:生产环境的版本处于非预期状态时需要立即采取行动。有可能是需要修复 master 分支上某个标记的生产版本。
像其它 git flow 命令一样,热修复分支开始自:
$ git flow hotfix start VERSION [BASENAME]
VERSION 参数标记新的热修复发布名称。你还可以指定从哪个 [BASENAME]
开始,[BASENAME]
是完成 release 版本时填写的版本号。
当完成热修复,分支代码将被合并到 develop 和 master 分支。相应地,master 分支打上热修复版本的标签。
git flow hotfix finish VERSION