标签:
Git是一个“分布式版本管理工具”,简单的理解版本管理工具:大家在写东西的时候都用过“回撤”这个功能,但是回撤只能回撤几步,假如想要找回我三天之前的修改,光用“回撤”是找不回来的。而“版本管理工具”能记录每次的修改,只要提交到版本仓库,你就可以找到之前任何时刻的状态(文本状态)。
下面的内容就是列举了常用的git命令和一些小技巧,可以通过"页面内查找"的方式进行快速查询:Ctrl/Command+f
。
如果之前未使用过Git,可以学习廖老师的免费Git教程入门
git version 2.7.4 (Apple Git-66)
下测试通过git add 改动的文件名
,此次改动就放到了‘暂存区’git commit 此次修改的描述
,此次改动就放到了’本地仓库’,每个commit,我叫它为一个‘版本’git push 远程仓库
,此次改动就放到了‘远程仓库’(github等)git help -g
抛弃本地仓库的所有版本(commit),回到远程仓库的状态。
git fetch --all && git reset --hard origin/master
也就是把所有的改动都重新放回工作区,并清空所有的commit,这样就可以重新提交第一个commit了
git update-ref -d HEAD
输出工作区和本地中最近的版本(commit)的different(不同)。
git diff
输出暂存区和本地最近的版本(commit)的different(不同)。
git diff --cached
输出工作区、暂存区 和本地最近的版本(commit)的different(不同)。
git diff HEAD
git checkout -
git branch --merged master | grep -v ‘^\*\| master‘ | xargs -n 1 git branch -d
git branch -vv
关联之后,git branch -vv
就可以展示关联的远程分支名了,同时推送到远程仓库直接:git push
,不需要指定远程仓库了。
git branch -u origin/mybranch
git branch -d <local_branchname>
git push origin --delete <remote_branchname>
或者
git push origin :<remote_branchname>
git tag -d <tag-name>
git push origin :refs/tags/<tag-name>
git checkout <file_name>
放弃所有修改:
git checkout .
git revert <commit-id>
和revert的区别:reset命令会抹去某个commit id之后的所有commit
git reset <commit-id>
git commit --amend
git log
就像shell的history一样
git reflog
git commit --amend --author=‘Author Name <email@address.com>‘
git remote set-url origin <URL>
git remote
-a参数相当于:all
git branch -a
-r参数相当于:remote
git branch -r
git whatchanged --since=‘2 weeks ago‘
这个过程需要cherry-pick
命令,参考
git checkout <branch-name> && git cherry-pick <commit-id>
简化命令
git config --global alias.<handle> <command>
比如:git status 改成 git st,这样可以简化命令
git config --global alias.st status
详解可以参考廖雪峰老师的git教程
git stash
untracked文件:新建的文件
git stash -u
git stash list
git stash apply <stash@{n}>
git stash pop
git stash clear
git checkout <stash@{n}> -- <file_path>
git ls-files -t
git ls-files --others
git ls-files --others -i --exclude-standard
可以用来删除新建的文件。如果不指定文件文件名,则清空所有工作的untracked文件。clean
命令,注意两点:
git clean <file_name> -f
可以用来删除新建的目录,注意:这个命令也可以用来删除untracked的文件。详情见上一条
git clean <directory_name> -df
git branch -m <new-branch-name>
git log --pretty=oneline --graph --decorate --all
git bundle create <file> <branch-name>
新建一个分支,分支内容就是上面git bundle create
命令导出的内容
git clone repo.bundle <repo-dir> -b <branch-name>
git rebase --autostash
git fetch origin pull/<id>/head:<branch-name>
git describe --tags --abbrev=0
git diff --word-diff
.gitignore
文件中记录的文件git clean -X -f
git config --list
git status --ignored
git log Branch1 ^Branch2
git log --show-signature
git config --global --unset <entry-name>
相当于保存修改,但是重写commit历史
git checkout --orphan <branch_name>
git show <branch_name>:<file_name>
git clone -b <branch-name> --single-branch https://github.com/user/repo.git
git checkout -b <branch-name>
git config core.fileMode false
最新的放在最上面
git for-each-ref --sort=-committerdate --format=‘%(refname:short)‘ refs/heads/
通过grep查找,given-text:所需要查找的字段
git log --all --grep=‘<given-text>‘
git reset <file-name>
git push -f <remote-name> <branch-name>
git remote add origin <remote-url>
标签:
原文地址:http://www.cnblogs.com/mfc-itblog/p/5704211.html