vote up 3 vote down star

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!

flag

3 Answers

vote up 4 vote down check
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|flag
Does that mean I can then do "git pull origin <REMOTE-branch-name>:<LOCAL-branch-name>"? – PHLAK Jul 2 at 3:40
@PHLAK: Yes, you can use the same refspec for git pull as well. – Alan Haggai Alavi Jul 2 at 3:58
vote up 6 vote down

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|flag
Thanks for the help, your answer was good, but Alan went just a little bit further. – PHLAK Jul 2 at 5:00
vote up 1 vote down

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|flag
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 at 3:39

Your Answer

Get an OpenID
or

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