I have a local repository I'm working on and it's remote is hosted on GitHub. I recently created a branch and started working on it making several commits and now wish to push the branch to GitHub and be able to pull it to another cloned repository. What needs to be done to accomplish this?

If this is not possible using GitHub I'd be happy just knowing how to do it normally.

Any and all help is appreciated. Thanks in advanced!

link|improve this question

feedback

3 Answers

up vote 17 down vote accepted
git push origin <local-branch-name>:<remote-branch-name>

Substitute for <local-branch-name> and <remote-branch-name>. They may be same or different, as you wish.

link|improve this answer
Does that mean I can then do "git pull origin <REMOTE-branch-name>:<LOCAL-branch-name>"? – PHLAK Jul 2 '09 at 3:40
1  
@PHLAK: Yes, you can use the same refspec for git pull as well. – Alan Haggai Alavi Jul 2 '09 at 3:58
@AlanHaggaiAlavi But that's not the same refspec. – Slipp Douglas Mar 30 at 17:54
feedback

As you have setup the remotes already, the command is just:

git push origin branch-name

on the first push.

Afterward, using git push origin would push all branch with matching name on remote.

link|improve this answer
Thanks for the help, your answer was good, but Alan went just a little bit further. – PHLAK Jul 2 '09 at 5:00
feedback

make sure that your remote URL is using SSH syntax and not just git protocol syntax. If you run,

git remote show origin

the URL printed should look something like,

git@github.com:yourname/projectname.git

You need the URL too look like that if you want to be able to push. If you are just a public user (without write access) the URL will look like,

git://github.com/yourname/projectname.git

If your looks like the latter then you can manually edit it in your projects .git/config file.

link|improve this answer
I can already push and pull to and from my GitHub repo, I'm just trying to figure out how to push and pull a branch. – PHLAK Jul 2 '09 at 3:39
feedback

Your Answer

 
or
required, but never shown

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