我有一个 git repo 有很多未提交的更改。将我未提交的更改发送给其他人继续工作的最佳方式是什么?
问问题
146 次
1 回答
4
创建一个功能分支:
git checkout -b MySpecialFeature
提交到功能分支:
git add -A
git commit -m "All my changes for SpecialFeature."
远程推送该分支。
git push -u origin MySpecialFeature
然后让您的特殊人员检查您的功能分支。
git checkout origin/MySpecialFeature
有关 git 远程分支的详细讨论,请参阅: 如何创建远程 Git 分支?
于 2013-08-30T19:58:31.223 回答