Most examples of creating remote branches involve pushing from a local branch

Is there a way of creating an empty remote branch without pushing?

Is it also possible to create a local empty branch,check it out then link it to the new also empty remote branch without pushing?

link|improve this question

61% accept rate
Why don't you want to push, keeping in mind that pushing doesn't require sending any commits? And what do you mean by an "empty" branch? – Evan Shaw Apr 4 '10 at 12:41
How could it be a remote branch without the "remote" even knowing about it? – ndim Apr 4 '10 at 12:49
feedback

1 Answer

up vote 3 down vote accepted

As mentioned in the blog post "Start a New Branch on your Remote Git Repository":

  • Creating a Remote Branch
git push origin origin:refs/heads/new_feature_name
  • Make sure everything is up-to-date
git fetch origin
  • Then you can see that the branch is created.
git branch -r

This should show ‘origin/new_feature_name

  • Start tracking the new branch
git checkout --track -b new_feature_name origin/new_feature_name

So to declare a remote branch, even one which doesn't yet exist on the local repository, git push is mandatory.

link|improve this answer
Thanks VonC, this is what I need to understand. In effect there is no hierachical structure as far as Git is concerned. The remote is no different from the local other than controls on pulling and pushing that the managers of the remote will put in place – vfclists Apr 7 '10 at 7:37
feedback

Your Answer

 
or
required, but never shown

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