0%

我经常使用的 Git 命令总结

此文章主要记录不常使用但特殊情况需求下确非常有用的 Git 命令:

删除远程文件或文件夹[示例:项目文件已全部提交,但是远程又用不到此文件(或此文件在各工作环境有差异需单独生成) 且 保留本地文件].

1
git rm -r -n --cached node_modules/\*

浏览将要删除node_modules文件夹下的所有文件(去掉 -n 则执行删除操作).

1
2
3
git rm -r --cached node_modules/\*
git commit -m 'remote node_modules directory.'
git push origin master

删除远程分支

1
2
git push origin --delete codezm_debug
git push origin :codezm_debug

共同维护项目时,若想帮助某人维护其分支,可以在本地创建一个起始点分支指向他的远程分支.

1
git checkout -b serverfix origin/serverfix

Stash 操作.

git stash list 显示Git栈内的所有备份,可以利用这个列表来决定从那个地方恢复
git stash 备份当前的工作区的内容,从最近的一次提交中读取相关内容,让工作区保证和上次提交的内容一致。同时,将当前的工作区内容保存到Git栈中
git stash pop 从Git栈中读取最近一次保存的内容,恢复工作区的相关内容。由于可能存在多个Stash的内容,所以用栈来管理,pop会从最近的一个stash中读取内容并恢复。
git stash clear 清空Git栈。此时使用gitg等图形化工具会发现,原来stash的哪些节点都消失了。
git stash apply stash@{1} 就可以将你指定版本号为stash@{1}的工作取出来,当你将所有的栈都应用回来的时候,可以使用’git stash clear’来将栈清空

http://www.cppblog.com/deercoder/archive/2011/11/13/160007.aspx

Tag 操作.

git tag ‘name’ 将当前分支状态代码生成名叫 name 的 tag[精简版].
git tag -l 列出所有tag.
git tag -d ‘name’ 删除本地名叫 name 的 tag.
git tag -a ‘tagname’ -m ‘tagname comment.’ 将当前分支状态代码生成名叫 name 的 tag[详记版].

git push tag tagname 默认情况下,git push 并不会把标签传送到远端服务器上,只有通过显式命令才能分享标签到远端仓库
git push origin –tags 如果要一次推送所有本地新增的标签上去,可以使用 –tags 选项
git push origin –delete refs/tags/v2.0.20 删除远程仓库 refs/tags/v2.0.20 tag[git ls-remote –tags].

git log –pretty=oneline 查看所有提交记录.
git tag -a tagname 9fceb02 对 9fceb02 打上 tag.

git fetch –tags 获取远程仓库所有 tag 代码.

若远程仓库删除了某个 tag 本地的tag并不会删除,可使用以下代码操作:
git tag -l | xargs git tag -d #delete local tag(s)

Remote 操作.

git ls-remote –heads origin
git ls-remote –tags origin
git ls-remote origin

Branch 操作.

git branch # 查询本地存在的branch
git branch -r # 查询远程的branch
git branch -a # 查询本地和远程branch
git branch -d -r origin/todo #删除远程的todo branch

git fetch –prune #这样就可在本地删除在远程不存在的branch

选择合并某个分支.

git merge –no-ff –no-commit origin/codezm
git status
git checkout HEAD filename
git commit

https://ask.helplib.com/21320