On Fri, May 16, 2014 at 6:01 PM, Enrico Forestieri <[email protected]> wrote:
> Now git is still someway trying to also push 2.0.x and I would > like to tell it not to do that, but I don't know neither why it still > insists on 2.0.x nor what I can do. >From what I understand, when you do a "git push" you only want to push the branch that you have checked out. If that's right, then putting the following should do that: git config --global push.default current Note the "global". I assume you want this for all Git-related projects. Scott
