When I run git push, my local branch some_branch is pushed to a remote branch some_remote\some_branch.

When I run git remote show some_remote I get:

Local refs configured for 'git push':
[cut]
some_branch         pushes to some_branch

I don't want this. How do I remove this entry?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Perhaps the simplest answer is to rename your local branch some_branch to another name, e.g. with:

git branch -m some_branch a_branch_name_not_present_on_some_remote

The reason for this is that git push by default pushes each branch to a branch with a matching name on the remote, if such a branch exists there. If you don't like this behaviour in general, you have to change the push.default config option. For example, you could do:

git config --global push.default tracking
git branch --set-upstream some_branch origin/totally_different_branch

I wrote a bit more here about the behaviour of git push where you don't specify the refspec explicitly.

link|improve this answer
Thanks :) I've gone with the config. – lampak May 21 '11 at 20:26
feedback

Easy way - edit it out of your .git/config file.

link|improve this answer
2  
But is there a way to pull from a remote branch but not push to it? – mathtick Aug 26 '11 at 19:12
@mathick - yes, by not using push pull/pull. Run git remote update which will pull down all the remote changes, and then you get run git merge origin/<branchname> manually to get the current changes from <branchname> – Abizern Aug 26 '11 at 19:29
But how do you push the changes to the remote? Maybe you mean you have a "pull only" model in mind? – mathtick Sep 2 '11 at 16:02
@mathtick You asked how to pull but not push, so why are you now asking how to push? – Abizern Sep 2 '11 at 16:09
I guess I wasn't clear: how to push/pull asymetrically across branches (i.e. have some branches as "pull-only" in a certain repo). I'm probably not using git right by asking these questions anyway :) – mathtick Sep 2 '11 at 20:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.