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://user@domain.com/repo.git
#通过 HTTP
$ git clone http://domain.com/user/repo.git
$ git init
$ git status
$ git diff
$ git add .
$ git add -p <file>
$ 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
$ 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
$ git branch
$ git branch -r
$ git checkout <branch>
$ git checkout -b <branch>
$ 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 remote -v
$ git remote show <remote>
$ git remote add <remote> <url>
$ 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)
or
git push <remote> --delete <branch> (since Git v1.7.0)
$ git push --tags
$ git merge <branch>
请勿重置已发布的提交!
$ git rebase <branch>
$ git rebase --abort
$ git rebase --continue
$ 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 add
):$ 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>
.gitignore
文件前错误提交的文件:$ git rm -r --cached .
$ git add .
$ git commit -m "remove xyz file"
$ 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 init
下面操作创建了一个新的feature分支,并切换到该分支
git flow feature start MYFEATURE
完成开发新特性。这个动作执行下面的操作:
git flow feature finish MYFEATURE
你是否合作开发一项新特性? 发布新特性分支到远程服务器,所以,其它用户也可以使用这分支。
git flow feature publish MYFEATURE
取得其它用户发布的新特性分支。
git flow feature pull origin MYFEATURE
通过下面命令追溯远端上的特性
git flow feature track MYFEATURE
git flow release start RELEASE [BASE]
创建 release 分支之后立即发布允许其它用户向这个 release 分支提交内容是个明智的做法。命令十分类似发布新特性:
git flow release publish RELEASE
(你可以通过 git flow release track RELEASE
命令追溯远端的 release 版本)
完成 release 版本是一个大 git 分支操作。它执行下面几个动作:
git flow release finish RELEASE
不要忘记使用git push --tags
将tags推送到远端
紧急修复来自这样的需求:生产环境的版本处于一个不预期状态,需要立即修正。有可能是需要修正 master 分支上某个 TAG 标记的生产版本。
像其它 git flow 命令一样, 紧急修复分支开始自:
$ git flow hotfix start VERSION [BASENAME]
VERSION 参数标记着修正版本。你可以从 [BASENAME]开始,
[BASENAME]`为finish release时填写的版本号
当完成紧急修复分支,代码归并回 develop 和 master 分支。相应地,master 分支打上修正版本的 TAG。
git flow hotfix finish VERSION