Git 完整命令手册地址:http://git-scm.com/docs
PDF 版命令手册:github-git-cheat-sheet.pdf
git的配置信息存储在三个不同的位置:
/etc/gitconfig
文件: 包含系统上每一个用户及他们仓库的通用配置。 如果使用带有 --system 选项的 git config 时,它会从此文件读写配置变量。该文件在安装目录中查找。~/.gitconfig
或 ~/.config/git/config
文件:只针对当前用户。可以传递 --global 选项让 Git 读写此文件。该文件在当前用户文件中查找,在windows系统中,一般情况下是 C:\Users$USER的.gitconfig 文件。.git/config
文件:当前使用仓库的Git目录中的config 文件,一般在项目文件夹下。每一个级别覆盖上一级别的配置,所以 .git/config 的配置变量会覆盖/etc/gitconfig 中的配置变量。
$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]
git每次提交时,都会上传该用户信息。
如果使用了 --global
选项,该命令只需要运行一次,你在该系统上做任何事情, Git 都会使用那些信息。
当你想针对特定项目使用不同的用户信息时,可以在那个项目目录下运行没有 --global 选项的命令来配置。
// 显示所有的配置信息
$ git config --list
// 显示某一项配置信息 git config
$ git config user.name
$ git init
$ git init [project-name]
$ git clone [url]
$ git status
$ git log
$ git log --stat
$ git log -S [keyword]
$ git log [tag] HEAD --pretty=format:%s
$ git log [tag] HEAD --grep feature
$ git log --follow [file]
$ git whatchanged [file]
$ git log -p [file]
$ git log -5 --pretty --oneline
$ git shortlog -sn
$ git blame [file]
$ git diff
$ git diff --cached [file]
$ git diff HEAD
$ git diff [first-branch]...[second-branch]
$ git diff --shortstat "@{0 day ago}"
$ git show [commit]
$ git show --name-only [commit]
$ git show [commit]:[filename]
$ git reflog
$ git rebase [branch]
$ git add [file1] [file2] ...
$ git add [dir]
$ git add .
git add git-*.sh
对于同一个文件的多处变化,可以实现分次提交
$ git add -p
$ git rm [file1] [file2] ...
$ git rm --cached [file]
$ git mv [file-original] [file-renamed]
$ git commit -m [message]
$ git commit [file1] [file2] ... -m [message]
$ git commit -a
$ git commit -v
如果代码没有任何新变化,则用来改写上一次commit的提交信息
$ git commit --amend -m [message]
$ git commit --amend [file1] [file2] ...
$ git branch
$ git branch -r
$## git branch -a
$ git branch [branch-name]
$ git checkout -b [branch]
$ git branch [branch] [commit]
$ git branch --track [branch] [remote-branch]
$ git checkout [branch-name]
$ git checkout -
$ git branch --set-upstream [branch] [remote-branch]
$ git merge [branch]
$ git cherry-pick [commit]
$ git branch -d [branch-name]
$ git push origin --delete [branch-name]
$ git branch -dr [remote/branch]
$ git tag
$ git tag [tag]
$ git tag [tag] [commit]
$ git tag -d [tag]
$ git push origin :refs/tags/[tagName]
$ git show [tag]
$ git push [remote] [tag]
$ git push [remote] --tags
$ git checkout -b [branch] [tag]
$ git remote update
$ git fetch [remote]
$ git remote -v
$ git remote show [remote]
$ git remote add [shortname] [url]
$ git pull [remote] [branch]
$ git push [remote] [branch]
$ git push [remote] --force
$ git push [remote] --all
$ git checkout [file]
$ git checkout [commit] [file]
$ git checkout .
$ git reset [file]
$ git reset --hard
$ git reset [commit]
$ git reset --hard [commit]
$ git reset --keep [commit]
$ git revert [commit]
$ git stash
$ git stash pop
git rm -r -n --cached 文件/文件夹名称
加上 -n 这个参数,执行命令时,是不会删除任何文件,而是展示此命令要删除的文件列表预览。
git rm -r --cached 文件/文件夹名称