前言
用git也好久了,感觉平时也就是git commit,git pull ,git push ,git add,git submodule,git stash,git branch,git checkout,git merge 等等,下面这个总结是分类进行的,比较清楚明了。
创建
复制一个已创建的仓库:
$ git clone ssh://haorooms@domain.com/blog.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 stash
git checkout branch2
git stash pop
git stash // 当前分支代码加入暂存区
git stash list // 查看暂存记录id
git stash apply // 还原
git stash drop 删除最后一条暂存区信息
搜索
从当前目录的所有文件中查找文本内容:
$ git grep "Hello"
在某一版本中搜索文本:
$ git grep "Hello" v2.5
提交历史
从最新提交开始,显示所有的提交记录(显示hash, 作者信息,提交的标题和时间):
$ git log
显示所有提交(仅显示提交的hash和message):
$ git log --oneline
显示某个用户的所有提交:
$ git log --author="username"
显示某个文件的所有修改:
$ git log -p <file>
谁,在什么时间,修改了文件的什么内容:
$ git blame <file>
分支与标签
列出所有的分支:
$ git branch
切换分支:
$ git checkout <branch>
创建并切换到新分支:
$ git checkout -b <branch>
基于当前分支创建新分支:
$ git branch <new-branch>
基于远程分支创建新的可追溯的分支:
$ git branch --track <new-branch> <remote-branch>
删除本地分支:
git branch -d '分支名'
git branch -D '分支名' //强制删除
给当前版本打标签:
$ git tag <tag-name>
更新与发布
列出当前配置的远程端:
$ git remote -v
显示远程端的信息:
$ git remote show <remote>
添加新的远程端:
$ git remote add <remote> <url>
下载远程端版本,但不合并到HEAD中:
$ git fetch <remote>
下载远程端版本,并自动与HEAD版本合并:
$ git remote pull <remote> <url>
将远程端版本合并到本地版本中:
$ git pull origin master
将本地版本发布到远程端:
$ git push remote <remote> <branch>
删除远程端分支:
$ git push <remote> :<branch> (since Git v1.5.0)
或
git push <remote> --delete <branch> (since Git v1.7.0)
例如:
git push origin --delete '分支名' // 删除远程分支
获取远程标签
git fetch --tags // 拉取远程标签
git tag // 查看标签
git fetch origin tag 2.4.10 // 用于精确的拉取指定的某个版本,适合运维同学部署指定版本
新建标签
git tag 2.4.10 //简单方法1
git tag -a 2.4.10 -m 'voc-web version 2.4.10' // 带备注的(常用)
推送到远程
git push origin --tags
发布标签:
$ git push --tags
删除标签
git tag -d 2.4.10 //删除了本地的2.4.10标签
git push origin :refs/tags/2.4.10 //删除了远程的2.4.10标签
合并与重置
将分支合并到当前HEAD中:
$ git merge <branch>
将当前HEAD版本重置到分支中:请勿重置已发布的提交!
$ git rebase <branch>
注:
rebase 翻译为变基,他的作用和 merge 很相似,用于把一个分支的修改合并到当前分支上, 不同于 git rebase的是,git merge 在不是 fast-forward(快速合并)的情况下,会产生一条额外的合并记录,类似Merge branch 'xxx' into 'xxx'的一条提交信息。
退出重置:
$ git rebase --abort
解决冲突后继续重置:
$ git rebase --continue
使用配置好的merge tool 解决冲突:
$ git mergetool
在编辑器中手动解决冲突后,标记文件为已解决冲突
$ git add <resolved-file>
$ git rm <resolved-file>
撤销
放弃工作目录下的所有修改:
$ git reset --hard HEAD
移除缓存区的所有文件(i.e. 撤销上次git add):
$ git reset HEAD
回退到上一次commit提交,没有push的。
git reset --soft HEAD~1
放弃某个文件的所有本地修改:
$ git checkout HEAD <file>
重置一个提交(通过创建一个截然不同的新提交)
$ git revert <commit>
将HEAD重置到指定的版本,并抛弃该版本之后的所有修改:
$ git reset --hard <commit>
将HEAD重置到上一次提交的版本,并将之后的修改标记为未添加到缓存区的修改:
$ git reset <commit>
将HEAD重置到上一次提交的版本,并保留未提交的本地修改:
$ git reset --keep <commit>
git merge 冲突后恢复到合并前状态
git merge --abort // 回滚到合并之前
第二种方案:
git stash
git stash clear
git submodule的使用
开发过程中,经常会有一些通用的部分希望抽取出来做成一个公共库来提供给别的工程来使用,这样就用到了git的git submodule命令。
添加
为当前工程添加submodule,命令如下:
git submodule add 仓库地址 路径
例如:
git submodule add helloworld.git
git commit -m "Add submodules helloworld.git"
其他人协同
git clone /path/to/repos/helloworld_parent.git
git submodule init
git submodule update
移除
1.删除git cache和物理文件夹
2.删除.gitmodules的内容(或者整个文件) 因为本例只有两个子模块,直接删除文件
3.删除.git/config的submodule配置 源文件
4.提交更改
github中fork了别人的项目,时时更新原项目代码
1、首先新建一个远程分支haorooms(名字可以随便取)
git remote add haorooms git@github.com:confidence68/loupan_select.git
2、然后fetch下haorooms的代码
git fetch haorooms
3、最后就可以把haorooms上的代码合并到你自己的分支上了
git merge haorooms/master
git记住密码
设置记住密码(默认15分钟):
git config --global credential.helper cache
如果想自己设置时间,可以这样做:
git config credential.helper 'cache --timeout=3600'
这样就设置一个小时之后失效
长期存储密码:
git config --global credential.helper store
git 的ssh key生产
1.查看是否已经有了ssh密钥:
cd ~/.ssh
如果没有密钥则不会有此文件夹,有则备份删除
2.生成密钥:
$ ssh-keygen -t rsa -C “haorooms@126.com”
按3个回车,密码为空。
删除 .DS_Store 文件
.DS_Store 是 Finder 用来存储这个文件夹的显示属性的:比如文件图标的摆放位置。虽然有办法可以禁止 .DS_Store 文件的生成,但是没有必要,只需要在 Git 中忽略 .DS_Store 文件即可。
如果你的项目中还没有自动生成的 .DS_Store 文件,那么直接将 .DS_Store 加入到 .gitignore 文件就可以了。如果你的项目中已经存在 .DS_Store 文件,那就需要先从项目中将其删除,再将它加入到 .gitignore。
git rm -r --cached .DS_Store
git commit -m 'delete .DS_Store'
发现远程库的 .DS_Store 已经没了。
然后在 gitignore 中忽略即可