Push / Pull current branch

余生长醉 提交于 2019-12-08 06:28:21

问题


It is possible in aptana to push / pull only the current branch? I mean, if it is possible in the team menu, to configure it somehow so when i do a pull / push, only use the current branch.

thanks !!


回答1:


The surest way to do this would be with EGit (that you would need to add to yuor Aptana setup, as illustrated in "Getting Aptana Studio 3 working with GitHub on your Windows PC").
This thread details it:

Egit has its own way to handle this, which might be overriding your config setting.
Either that or jgit doesn't support this configuration option yet -- that situation came up earlier with merge.ff.

The EGit preference can be set from Team -> Remote -> Configure Push to Upstream...
The default is to push everything, I think.
You can restrict it to 'master', or whatever specific branches you prefer, in the dialog that will pop up.
Similarly for fetch, via and Team -> Remote -> Configure Fetch from UpStream...
I don't know if either of these supports 'current'.

Indeed, pushing only the current branch might not be directly supported by an official release of EGit just yet: See bug 352381.
In other word, EGit/JGit might not take into account the git config "push.default":

current - push the current branch to a branch of the same name.




回答2:


Unfortunately, I'm unable to comment on VonC's answer as I don't have the required rep yet.

EGit can be configured to push only the current branch by removing all push preferences from it's git config file. This must be the default EGit behaviour if no push config is specified. Here's how to do this:

  • Go to the Git Repositories view.
  • Right-click on the repo you want to configure.
  • Select 'Properties' from the context menu.
  • In the Key | Value input area, delete all push specs within the origin heading. There's probably 2 of them, along the lines of refs/heads/*:refs/heads/* and refs/tags/*:refs/tags/*).


来源:https://stackoverflow.com/questions/7241407/push-pull-current-branch

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!