# Git 基础
# 常用命令
# 新建仓库
git init #初始化
git status #获取状态
git add [file1] [file2] ... #.或*代表全部添加
git commit -m "message" #此处注意乱码
git remote add origin git@github.com:yanhaijing/test.git #添加源
git remote set-url origin git@github.com:yanhaijing/test.git #重设源
git push -u origin master #push同时设置默认跟踪分支
# 从现有仓库克隆
git clone git://github.com/yanhaijing/data.js.git
git clone git://github.com/schacon/grit.git mypro #克隆到自定义文件夹
# 本地操作
git add * #跟踪新文件
git add -p #view每一个文件是否被add y/n
rm *&git rm * #移除文件
git rm -f * #移除文件
git rm --cached * #停止追踪指定文件,但该文件会保留在工作区
git mv file_from file_to #重命名跟踪文件
git log #查看提交记录
git reflog
git commit #提交更新
git commit [file1] [file2] ... #提交指定文件
git commit -m 'message'
git commit -a #跳过使用暂存区域,把所有已经跟踪过的文件暂存起来一并提交
git commit --amend #修改最后一次提交
git commit -v #提交时显示所有diff信息
git reset HEAD * #取消已经暂存的文件
git reset --mixed HEAD * #同上
git reset --soft HEAD * #重置到指定状态,不会修改索引区和工作树
git reset --hard HEAD * #重置到指定状态,会修改索引区和工作树
git revert HEAD #撤销前一次操作
git revert HEAD~ #撤销前前一次操作
git revert commit #撤销指定操作 撤销也会作为一次提交进行保存。
git checkout -- file #取消对文件的修改(从暂存区——覆盖worktree file)
git diff file #查看指定文件的差异
git diff --stat #查看简单的diff结果
git diff #比较Worktree和Index之间的差异
git diff --cached #比较Index和HEAD之间的差异
git diff HEAD #比较Worktree和HEAD之间的差异
git diff branch #比较Worktree和branch之间的差异
git diff branch1 branch2 #比较两次分支之间的差异
git diff commit commit #比较两次提交之间的差异
git log #查看最近的提交日志
git stash #将工作区现场(已跟踪文件)储藏起来,等以后恢复后继续工作。
git stash list #查看保存的工作现场
git stash apply #恢复工作现场
git stash drop #删除stash内容
git stash pop #恢复的同时直接删除stash内容
git stash apply stash@{0} #恢复指定的工作现场,当你保存了不只一份工作现场时。
# 分支操作
git branch #列出本地分支
git branch -r #列出远端分支
git branch -a #列出所有分支
git branch test #新建test分支
git branch -m old new #重命名分支
git branch -d test #删除test分支
git branch -D test #强制删除test分支
git checkout test #切换到test分支
git checkout -b test #新建+切换到test分支
git checkout -b test dev #基于dev新建test分支,并切换
git merge test #将test分支合并到当前分支
git rebase master #将master分之上超前的提交,变基到当前分支
git rebase --interactive #交互模式
git rebase --continue #处理完冲突继续合并
git rebase --skip #跳过
git rebase --abort #取消合并
git fetch -p #Sync the remote branch 同步远端分支
git branch | grep -v "master" | xargs git branch -D
# 远端操作
git fetch origin remotebranch[:localbranch] #从远端拉去分支[到本地指定分支]
git merge origin/branch #合并远端上指定分支
git pull origin remotebranch:localbranch #拉远端分支到本地分支
git push origin branch #将当前分支,推送到远端上指定分支
git push origin localbranch:remotebranch #推送本地指定分支,到远端上指定分支
git push origin :remotebranch #删除远端指定分支
git push origin remotebranch --delete # 删除远程分支
git branch -dr branch #删除本地和远程分支
# 源操作
git remote add origin1 git@github.com:yanhaijing/data.js.git
git remote #显示全部源
git remote -v #显示全部源+详细信息
git remote rename origin1 origin2 #重命名
git remote rm origin #删除
git remote show origin #查看指定源的全部信息
# 标签操作
git tag #列出现有标签
git tag v0.1 [branch|commit] #[从指定位置]新建标签
git tag -a v0.1 -m 'my version 1.4' #新建带注释标签
git checkout tagname #切换到标签
git push origin v1.5 #推送分支到源上
git push origin --tags #一次性推送所有分支
# 常用配置
# 更改 git 默认的用户名和邮箱
git config --global user.name "NewName" #Setting your username in Git
git config --global user.email "NewEmail" #Setting your email in Git
git config --global user.name #查看git默认的用户名
git config --global user.email #查看git默认的邮箱
git config --list #查看配置的信息
git config --local user.name "NewName" #Setting your username in Git
git config --local user.email "NewEmail" #Setting your email in Git
git commit --amend --author="sialvsic <sialvsic@outlook.com>" --no-edit 修改最近一次的提交人和邮箱
git commit --amend --author="alvin.zhou <alvin.zhou@ximalaya.com>" --no-edit 修改最近一次的提交人和邮箱
# 更改项目的 git user 和 email
git config --local user.name "sialvsic"
git config --global user.name "sialvsic"
git config --local user.email "sialvsic@outlook.com"
git config --global user.email "sialvsic@outlook.com"
git config --local user.name "alvin.zhou"
git config --local user.email "alvin.zhou@xx.com"
git config --local --list #查看本地的配置的信息
git config --local #使用本地的配置
git config --local user.name "yixingzhou"
git config --local user.email "yixingzhou@xx.com"
# 忽略文件大小写(默认为忽略大小写)
本地
git config core.ignorecase false //不忽略大小写
全局
git config --global core.ignorecase false
$$
# 常用操作命令简写
g -> git
gst -> git status
gd -> git diff
gdc -> git diff --cached
gdv -> git diff -w "$@" | view -
gl -> git pull
gup -> git pull --rebase
gp -> git push
gco -> git checkout
gr -> git remote
grv -> git remote -v
gb -> git branch
gba -> git branch -a
gcl -> git config --list
ga -> git add
gm -> git merge
# 更改所有的git历史
https://help.github.com/en/articles/changing-author-info#changing-the-git-history-of-your-repository-using-a-script
# 参考资料
- Git简易指南: (opens new window)http://www.bootcss.com/p/git-guide/
- codeschool try git: (opens new window)https://try.github.io/levels/1/challenges/1
- 30 天精通 Git 版本控管: (opens new window)https://github.com/doggy8088/Learn-Git-in-30-days/blob/master/README.markdown
- Pro git 中文版: (opens new window)https://git.oschina.net/progit/
- git 参考手册: (opens new window)http://gitref.org/zh/index.html
- 聊雪峰 使用github: (opens new window)http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/00137628548491051ccfaef0ccb470894c858999603fedf000
- 图解git (opens new window)http://marklodato.github.io/visual-git-guide/index-zh-cn.html
- git book: (opens new window)https://git-scm.com/book/zh/v2 $$