git小贴士:git常用命令集合(git的'奇技淫巧'?😱)
-
Fork于tips项目
-
一定要先测试命令的效果后,再用于工作环境中,以防造成不能弥补的后果!到时候别拿着砍刀来找我
-
所有的命令都在
git version 2.7.4 (Apple Git-66)
下测试通过
- 工作区:改动(增删文件和文本)
- 暂存区:输入命令:
git add 改动的文件名
,此次改动就放到了‘暂存区’ - 本地仓库:输入命令:
git commit 此次修改的描述
,此次改动就放到了’本地仓库’,每个commit,我叫它为一个‘版本’ - 远程仓库:输入命令:
git push 远程仓库
,此次改动就放到了‘远程仓库’(github等) - commit-id:
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 protected]>'
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
命令,注意两点:
- clean后,删除的文件无法找回
- 不会影响tracked的文件的改动,只会删除untracked的文件
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
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>