Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 git 新手,我只是在学习..
我设置了一个 github 项目进行测试,我一直在本地工作。
我听说你永远不应该在主人身上工作,它应该准备好生产。所以我做了以下
我做了一个
git branch myfix git checkout
做了我的改变并做了一个
git commit -a
但是我如何告诉它把我的代码移到主分支中呢?
好
git checkout
实际上应该是
git checkout myfix
如果您确实这样做了,那么您可以像这样将代码“移动”到主分支中
git checkout master git merge myfix