码迷,mamicode.com
首页 > 其他好文 > 详细

git开发错分支

时间:2019-04-23 12:26:11      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:set   tps   提交代码   应该   提交   www   check   bsp   add   

1,代码未提交时:

  使用以下命令即可解决。

  git add .      (把所有改动暂存)

  git stash     (把暂存的文件提交到git的暂存栈)

  git checkout 本该提交代码的分支 

  git stash pop (将暂存栈中的代码放出来)

 

2,代码提交了

  git  checkout  不该提交代码提交了代码的分支

  git reset HEAD~1  (最近一次提交放回暂存区, 并取消此次提交)

  git stash                (把暂存的文件提交到git的暂存栈)

  git checkout 应该提交代码的分支

  git stash pop

      git  checkout  不该提交代码提交了代码的分支 (等你把代码提交到了正确的分支后,再次切到刚刚错的分支)

      git push origin 错误的分支 -f  (把不该上去的文件回退掉)

 

转载自:https://www.jianshu.com/p/28ff3c15be37

git开发错分支

标签:set   tps   提交代码   应该   提交   www   check   bsp   add   

原文地址:https://www.cnblogs.com/lovemomo/p/10755483.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!