I have a master and a dev branch, both pushed to github, I've cloned, pulled, fetched, but I remain unable to get anything other than the master branch back.
I'm sure I'm missing something obvious, but I have RTM and I'm getting no joy at all.
|
I have a master and a dev branch, both pushed to github, I've cloned, pulled, fetched, but I remain unable to get anything other than the master branch back. I'm sure I'm missing something obvious, but I have RTM and I'm getting no joy at all. |
||||
|
First, clone a remote git repository and cd into it:
Next, look at the local branches in your repository:
But there are other branches hiding in your repository! You can see these using the
If you just want to take a quick peek at an upstream branch, you can check it out directly:
But if you want to work on that branch, you'll need to create a local tracking branch:
Now, if you look at your local branches, this is what you'll see:
You can actually track more than one remote repository using
At this point, things are getting pretty crazy, so run
|
|||||||||||||||||||||
|
|
If you have many remote branches that you want to fetch at once:
Now you can checkout any branch as you need to, without hitting the remote repo. |
|||||||||||||||||||||
|
|
this bash script helped me out:
It will create tracking branches for all remote branches, except master (which you probably got from the original clone command). I think you might still need to do a
to be sure. |
|||||||||||
|
|
You can easily switch to a branch without using the fancy "git checkout -b somebranch origin/somebranch" syntax. You can just do:
Git will automatically do the right thing:
Git will check whether a branch with the same name exists in exactly one remote, and if it does, it tracks it the same way as if you had explicitly specified that it's a remote branch. From the git-checkout man page of Git 1.8.2.1:
|
|||||||||||||||||
|
|
The fetch that you are doing should get all the remote branches, but it won't create local branches for them. If you use gitk, you should see the remote branches described as "remotes/origin/dev" or something similar. To create a local branch based on a remote branch, do something like: git checkout -b dev refs/remotes/origin/dev Which should return something like: Branch dev set up to track remote branch refs/remotes/origin/dev. Switched to a new branch "dev" Now, when you are on the dev branch, "git pull" will update your local dev to the same point as the remote dev branch. Note that it will fetch all branches, but only pull the one you are on to the top of the tree. |
|||||||||
|
|
Using the --mirror option seems to copy the remote tracking branches properly. However, it sets up the repository as a bare repository, so you have to turn it back into a normal repository afterwards.
|
|||||||||||||||||||
|
|
When you do "git clone git://location", all branches and tags are fetched. In order to work on top of a specific remote branch, assuming it's the origin remote:
|
|||
|
|
use
might be better, in terms of tracking remote repository. |
|||
|
|
|
Just do this:
You see, 'git clone git://example.com/myprojectt' fetches everything, even the branches, you just have to checkout them, then your local branch will be created. |
||||
|
|
Use my tool git_remote_branch (you need Ruby installed on your machine). It's built specifically to make remote branch manipulations dead easy. Each time it does an operation on your behalf, it prints it in red at the console. Over time, they finally stick into your brain :-) If you don't want grb to run commands on your behalf, just use the 'explain' feature. The commands will be printed to your console instead of executed for you. Finally, all commands have aliases, to make memorization easier. Note that this is alpha software ;-) Here's the help when you run grb help:
git_remote_branch version 0.2.6
Usage:
grb create branch_name [origin_server]
grb publish branch_name [origin_server]
grb rename branch_name [origin_server]
grb delete branch_name [origin_server]
grb track branch_name [origin_server]
Notes:
- If origin_server is not specified, the name 'origin' is assumed
(git's default)
- The rename functionality renames the current branch
The explain meta-command: you can also prepend any command with the
keyword 'explain'. Instead of executing the command, git_remote_branch
will simply output the list of commands you need to run to accomplish
that goal.
Example:
grb explain create
grb explain create my_branch github
All commands also have aliases:
create: create, new
delete: delete, destroy, kill, remove, rm
publish: publish, remotize
rename: rename, rn, mv, move
track: track, follow, grab, fetch
|
|||||||||||
|
|
I needed to do exactly the same. Here is my ruby script.
|
|||
|
|
|
A |
|||||||||||||||
|
|
Better late than never, but here is the best way to do this:
At this point you have a complete copy of the remote repo with all of it's branches (verify with |
|||
|
|
|
As posted by Jacob Fike:
I found this worked well for me, giving me a local branch for every branch in the remote, however I found that I needed "--" before the "unset" option of git config. (Except of course the 'drawback' of doing it this way is that you then have no remote tracking branches in your repository, only local braches, so although you get the branches I'm not sure how well a merge back would work). |
|||
|
|
|
A little late to the party, but I think this does the trick:
If this does something undesirable, I'd love to know. However, so far, this works for me. |
|||
|
|
Such an eternal question and nobody mentions aliases. Though there aren't any native git one-liner, you can define your own as
and then use it as
|
|||
|
|
git branch -a) shows you the branches in the remote, but if you attempt to check any of those out you will be in a 'detached HEAD' state. The next answer down (second most upvotes) answers a different question (to wit: how to pull all branches, and, again, this only works for those you're tracking locally). Several of the comments point out that you could parse thegit branch -aresults with a shell script that would locally track all the remote branches. Summary: There's no git native way to do what you want and it might not be all that great an idea anyway. – Day Davis Waterbury Jun 18 '12 at 22:43scp some_user@example.com:/home/some_user/project_folder ~Not sure if that solution works for github though.. – snapfractalpop Sep 26 '12 at 22:51