I'd like to continue to push (almost) all branches with a simple git push command, but there are a few things I'd like to be able to keep in Git locally without sharing them with the rest of the world.

The things I'm keeping locally include private changes to public files—hence, I'd like to keep the secret stuff in an appropriately named branch that doesn't get pushed to the server. Is this a thing?

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

Just create branches in some namespace like private - git checkout -b private/mybranch. As long as that namespace is not existing on the remote repo, any branch in that namespace will not be pushed when you do git push

To also prevent pushing by explicit, set the branch.<name>.remote to some some nonexistent remote.

link|improve this answer
Thank you, that was precisely it! Well, almost. I had configured git to push all branches at some point—which, I'm afraid, I don't remember doing—so I had to take the extra step of turning that off, but now everything's set. – Eris Sep 15 '11 at 3:55
feedback

The only way to push more than one branch at a time is by using push.default = matching, described as: "push all matching branches. All branches having the same name in both ends are considered to be matching." That's the default setting, so maybe what you're used to. You can have a branch not pushed by naming it something that doesn't exist on the remote you're pushing to.

link|improve this answer
I accepted the other answer because it goes further by offering a "just in case" safety net, but thank you for pointing out push.default! I would totally accept this answer too if I could accept more than one. C: – Eris Sep 15 '11 at 3:58
feedback

Your Answer

 
or
required, but never shown

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