git init $name
git config --global user.name $""
git config --global user.email $""
http:
git remote add origin $https://github.com/qianqwgithub/JavaNote.git
ssh:
git remote add origin git@github.com:qianqwgithub/JavaNote.git
git clone $url
git status
git add $./fileName
git commit -m'$message'
git push origin master:master
git remote 或git remote -v
git pull origin master:master
git log
git checkout --$file
git reset HEAD $file (回到工作区的修改,再checkout)
git reset
git reset --hard HEAD^
git reset --hard HEAD $head
展示帮助信息
回到远程仓库的状态
重设第一个commit
展示工作区和暂存区的不同
展示暂存区和最近版本的不同
展示暂存区、工作区和最近版本的不同
快速切换分支
删除已经合并到master的分支
展示所有的分支关联的远程仓库
关联远程分支
删除本地分支
删除远程分支
查看标签
本地创建标签
推送标签到远程仓库
删除本地标签
删除远程标签
放弃工作区的修改
回到某一个commit的状态,并重新增添一个commit
回到某个commit的状态,并删除后面的commit
修改上一个commit的描述
查看commit历史
显示本地执行过git命令
修改作者名
修改远程仓库的url
列出所有远程仓库
列出本地和远程分支
列出远程分支
查看两个星期内的改动
把A分支的某一个commit,放到B分支上
给git命令起别名
存储当前的修改,但不用提交commit
保存当前状态,包括untracked的文件
展示所有stashes
回到某个stash的状态
回到最后一个stash的状态,并删除这个stash
删除所有的stash
从stash中拿出某个文件的修改
展示所有tracked的文件
展示所有untracked的文件
展示所有忽略的文件
强制删除untracked的文件
强制删除untracked的目录
重命名分支
展示简化的commit历史
查看某段代码是谁写的
把某一个分支到导出成一个文件
从包中导入分支
执行rebase之前自动stash
从远程仓库根据ID,拉下某一状态,到本地分支
详细展示一行中的修改
清除.gitignore
文件中记录的文件
展示所有alias和configs
展示忽略的文件
commit历史中显示Branch1有的,但是Branch2没有commit
在commit log中显示GPG签名
删除全局设置
新建并切换到新分支上,同时这个分支没有任何commit
展示任意分支某一文件的内容
clone下来指定的单一分支
创建并切换到该分支
忽略文件的权限变化
展示本地所有的分支的commit
在commit log中查找相关内容
把暂存区的指定file放到工作区中
强制推送
增加远程仓库
git help -g
抛弃本地仓库的所有版本(commit),回到远程仓库的状态。
git fetch --all && git reset --hard origin/master
也就是把所有的改动都重新放回工作区,并清空所有的commit,这样就可以重新提交第一个commit了
git update-ref -d HEAD
输出工作区和暂存区的different(不同)。
git diff
还可以展示本地仓库中任意两个commit之间的文件变动:
git diff <commit-id> <commit-id>
输出暂存区和本地最近的版本(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
或者在push时加上-u
参数
git push origin/mybranch -u
git branch -d -branchname>
git push origin --delete <remote-branchname>
或者
git push origin :<remote-branchname>
git tag
展示当前分支的最近的tag
git describe --tags --abbrev=0
git tag <version-number>
默认tag是打在最近的一次commit上,如果需要指定commit打tag:
$ git tag -a <version-number> -m "v1.0 发布(描述)" <commit-id>
首先要保证本地创建好了标签才可以推送标签到远程仓库:
git push origin -version-number>
一次性推送所有标签,同步到远程仓库:
git push origin --tags
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
blame的意思为‘责怪’,你懂的。
git blame <file-name>
就像shell的history一样
git reflog
git commit --amend --author='Author Name '
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
命令,注意两点:
1. clean后,删除的文件无法找回 2. 不会影响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 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=''
git reset <file-name>
git push -f <remote-name> <branch-name>
git remote add origin <remote-url>