我正在阅读一本编程书,我想为每一章从 master 分支,然后在章节完成后合并回 master,但是让章节特定的分支永久显示在我的 github 中。通过 eclipse gui 执行此操作的最佳方法是什么?我已经在eclipse中创建了分支,但是我无法让它在github中创建重复的项目分支。
Github repository
-master
-chapter1
-chapter2
如果你的“ Team => Push to Upstream
”是灰色的,你需要在你的 Eclipse Egit 配置中指定你本地 Git 仓库的上游地址:参见“ Eclipse/Egit, Push to Remote menu option is grayed out ”。
还要在同一个 EGit 中检查您的SSH2 配置。
最后,单击“添加所有分支规范”以将所有本地分支推送到上游仓库:
你推树枝了吗?
git push origin chapter1
git push origin chapter2
...ETC...
(注意:如果您在 Eclipse 中使用 git 的图形界面,您可能会考虑将该信息添加到问题中。)