I created a local branch which I want to 'push' upstream. There is a similar question here on Stackoverflow on how to track a newly created remote branch.

However, my workflow is slightly different. FIRST I want to create a local branch. And I will only push it upstream when I'm satisfied and want to share my branch.

How would I do that? (my google searches did not seem to come up with anything)

And how would I tell my colleagues to pull it from the upstream repository?

link|improve this question

did anyone ever answer you second question? >>And how would I tell my colleagues to pull it from the upstream repository? – milkplus Oct 27 '10 at 22:14
10  
@milkplus, if you have a cloned repository already, all you need to do is git checkout origin/<branch-name> -b <branch-name> which will create a new local branch called <branch-name which tracks the remote branch of the same name and checks it out for you. – Brett Ryan Dec 6 '10 at 4:21
feedback

3 Answers

up vote 289 down vote accepted

The branch is automatically created when you push it to the remote server. So when you feel for it, you can just do

git push <remote-name> <branch-name>

Your colleagues would then just pull that branch, and it's automatically created locally.

Note however that formally, the format is:

git push <remote-name> <local-branch-name>:<remote-branch-name>

But when you omit one, it assumes both names are the same.

From a comment below:

You might want to use git push -u instead, so that a subsequent git pull will know what to do. – Bart Schuller

The -u option sets-up a upstream branch:

For every branch that is up to date or successfully pushed, add upstream (tracking) reference, used by argument-less git-pull(1) and other commands.

link|improve this answer
18  
Note that default behavior of git is to push matching refs, so git push <remote> would not push branch if it is not present on <remote>. – Jakub Narębski Oct 5 '09 at 21:55
13  
Too easy ... is this really git? :-) – sbwoodside Jan 25 '11 at 5:49
41  
You might want to use git push -u <remote-name> <branch-name> instead, so that a subsequent git pull will know what to do. – Bart Schuller Apr 6 '11 at 15:03
14  
Instead of explicitly specifying the server name, you can just use origin, which means "the server I got the rest of this repo from": thus git push origin <branch-name>. – jpatokal May 16 '11 at 6:31
7  
If you forget to use the -u option, you can just type git push -u afterwards in the branch, then git pull will work. – Jan Jul 28 '11 at 13:07
show 5 more comments
feedback

First, you must create your branch locally

git checkout -b your_branch

After that, you can work locally in your branch, when you are ready to share the branch, push it. The next command push the branch to the remote repository origin and tracks it

git push -u origin your_branch

Teammates can reach your branch, by doing:

git fetch
git checkout origin/your_branch

You can continue working in the branch and pushing whenever you want without passing arguments to git push (argumentless git push will push the master to remote master, your_branch local to remote your_branch, etc...)

git push

Teammates can push to your branch by doing commits and then push explicitly

... work ...
git commit
... work ...
git commit
git push origin HEAD:refs/heads/your_branch

Or tracking the branch to avoid the arguments to git push

git checkout --track -b your_branch origin/your_branch
... work ...
git commit
... work ...
git commit
git push
link|improve this answer
git fetch command helps me greate. Thanks! – Oleg Jan 6 at 12:41
thank you for pointing out that first you need to create the branch locally – Naoise Golden Apr 13 at 16:53
This is the most complete answer. Thanks! – cidered May 10 at 10:39
feedback

As stated in the previous answers,

git push <remote-name> <local-branch-name>:<remote-branch-name>

is enough for pushing a local branch.

Your colleagues, can pull all remote branches (including new ones) with this command:

git remote update

Then, to make changes on the branch, the usual flow:

git checkout -b <local-branch-name> <remote-name>/<remote-branch-name>
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.