我想在EGit中执行以下操作:
$ git checkout -b newbranch
$ git push -u origin newbranch
这给了我一个新的本地分支,将其推送到上游服务器,创建了正确的跟踪引用。我该如何在EGit中做同样的事情?
最佳答案
对于第一个操作,您可以阅读EGit手册“Creating a New Local Branch ”
有关推送的信息,请参见Vogella's Egit tutorial,以及“Push ref specification”
注意:robinst已打开bug 378960“允许在Push Branch向导中配置上游”(在EGit - set up remote tracking correctly when creating a branch中提到)。
注意:bug 378960已在Egit 3.2中标记为已解决(2014年2月):
关于git - 如何在EGit中创建适当的新本地和远程分支组合?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10111236/