I am working on a local git repository. There are two branches, the master and feature_x.

I want to push feature_x to remote, but do not want to push the changes on the master branch.

Will a "git push origin feature_x" from my feature_x branch (feature_x branch already exists on remote) work?

I do not want to test this on my box, because I cannot push to master right now.

link|improve this question

feedback

2 Answers

up vote 64 down vote accepted

yes, just do the following

git checkout feature_x
git push origin feature_x
link|improve this answer
16  
With modern git you should be able to simply "git push origin HEAD", or even "git push HEAD" to push only currently checked-out branch. – Jakub NarÄ™bski May 5 '09 at 9:11
feedback

Take a look here:

remote

and here:

push a branch to github

Sounds like it would work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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