1. 设置Alias
通过设置Alias可以简化一些复杂的Git 命令。
举几个例子:
git status 可以简写成 git st
git pull --rebase 可以简写成git pr
...
设置git alias:
git config --global alias.pr 'pull --rebase'
显示所有已设置的Alias
git config --get-regexp alias
PS. 所有的Alias都可以直接通过 .gitconfig 文件做增删改查:
vi ~/.gitconfig
2. 代码的同步
代码下载
git clone [path-to github\gitlab] [folderName]
//可以通过folderName 指定文件夹名称
代码下拉
git pull --rebase
// 加rebase参数可以有效避免太多临时分支的问题
PS. why pull rebase
代码添加\移出待提交队列
git add . //所有文件都添加
git add path-to-file1 path-to-file2 ... //添加单个文件
git reset . //移出所有文件
git add path-to-file1 path-to-file2 ... //移出单个文件
将待提交代码提交到本地\撤销本地提交
git commit -m "your comment"
git reset [commit id] // 你想退回到的目标提交的id
将本地的commit推到服务端
git push
git revert [commit id]// push 上去的东西是无法彻底删掉的,revert只是重新提交一个撤销某次提交的请求
一次完整的提交代码流程:
git add . // 筛选要提交的文件
git commit -m "your comment"
git pull --rebase // 下拉代码防止冲突
// 如果有冲突,解决冲突
git push
// 如果是git add . ,那么前两步可以简写成一步
git commit -am "your comment"
查看本地修改
git diff [filename] //查看未进入待提交队列的修改, 不填filename则是所有文件
git diff --cached //查看已进入待提交队列的修改
还原某个修改过文件
git checkout . //还原所有
git checkout [path-to-file1] [path-to-file2]...
查看提交记录
git log
branch相关
查看分支
git branch //本地分支
git branch -r //远程分支
git branch -a //所有分支
创建本地分支
git checkout -b [branch-name]
本地分支推到服务端
git push -u origin [branch-name]
//不加-u 需要额外绑定两个分支的关系
git push origin [branch-name-remote]
git branch --set-upstream [branch-name-local] origin/[branch-name-remote]
切换分支
git checkout [local branch]
删除分支
//删除本地分支,要求本地分支已经merge到upstream或者HEAD
git branch -d [branch-name]
//强制删除本地分支,不管你merge没有
git branch -D [branch-name]
//删除远程分支
git push origin :[remote-branch-name]
PS. 删除分支可以参考男男的 git 删除分支
将某个分支merge到当前分支
git merge [other-branch]
将其他分支的某些提交merge到当前分支
git cherry-pick [commit-id-1] [commit-id-2] ....
tag 相关
查看所有tag
git tag
本地打tag
//最简单方式,commitID 不填默认为当前commit
git tag [tag-name] [commit-id]
//比较合理的用法
git tag -fa [tag-name] -m "your comment"
// -f 表示覆盖已有的同名标签
// -a 表示是annotated tag, 可以加注释
tag 同步到服务端
git push --tags // 只push tag
git push --all // push 所有,包括代码和tag
删除本地tag
git tag -d [tag-name]
删除tag
git push origin :refs/tags/<tagname> //按名称删除所有分支中的tag
submodule 相关
添加submodule
git submodule add [submodule-git-path] [folderName]
更新submodule到主工程指定版本
git submodule update --init
其他操作
使用stash缓存
git stash [name]// 有些时候需要先git add 把没在source control下的东西加进来
git stash pop
git stash drop
git stash list
git stash clear
查看代码地址
git remote -v
[有待验证...]
大招-还原所有本地未提交的修改(撤销已提交的本地修改参考git reset)
git checkout HEAD --force
Fork 下的工程,需要fetch操作的参考 fork