GIT 常用
Posted msvc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GIT 常用相关的知识,希望对你有一定的参考价值。
?拉取分支:
git.exe pull -v --progress "origin"
git.exe pull --progress -v --no-rebase "origin"
?获取分支:
git.exe fetch -v --progress "origin"
?推送master分支到远程console分支:
git.exe push --progress "origin" master:console
git.exe push --all --progress "origin"
?切换远程master分支到本地winform分支
git.exe checkout --no-track -b winform remotes/origin/master --
?切换本地console分支
git.exe checkout console --
?取消对文件的修改。还原到最近的版本,废弃本地做的修改。
git checkout --
?取消已经暂存的文件。即,撤销先前"git add"的操作
git reset HEAD
?修改最后一次提交。用于修改上一次的提交信息,或漏提交文件等情况。
git commit --amend
?回退所有内容到上一个版本
git reset HEAD^
?回退a.py这个文件的版本到上一个版本
git reset HEAD^ a.py
?向前回退到第3个版本
git reset –soft HEAD~3
?将本地的状态回退到和远程的一样
git reset –hard origin/master
?回退到某个版本
git reset 057d
?回退到上一次提交的状态,按照某一次的commit完全反向的进行一次commit.(代码回滚到上个版本,并提交git)
git revert HEAD
以上是关于GIT 常用的主要内容,如果未能解决你的问题,请参考以下文章