How do I clone all remote branches with Git? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T03:16:19Z http://stackoverflow.com/feeds/question/67699 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/67699/how-do-i-clone-all-remote-branches-with-git 14 How do I clone all remote branches with Git? Peter Coulton 2008-09-15T22:42:07Z 2009-07-27T06:10:37Z <p>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.</p> <p>I'm sure I'm missing something obvious, but I have RTM any I'm getting no joy at all.</p> <p><hr /></p> http://stackoverflow.com/questions/67699/how-do-i-clone-all-remote-branches-with-git/67712#67712 0 Answer by MattoxBeckman for How do I clone all remote branches with Git? MattoxBeckman 2008-09-15T22:46:08Z 2008-09-15T22:46:08Z <p>A git-clone is supposed to copy the entire repository. Try cloning it, and then run "git-branch" with no arguments. It should list all the branches. If then you want to switch to branch "foo" instead of "master, use "git-checkout foo".</p> http://stackoverflow.com/questions/67699/how-do-i-clone-all-remote-branches-with-git/67716#67716 1 Answer by elmarco for How do I clone all remote branches with Git? elmarco 2008-09-15T22:47:00Z 2008-09-15T22:47:00Z <p>When you do "git clone git://location", all branches and tags are fetched.</p> <p>In order to work on top of a specific remote branch, assuming it's the origin remote:</p> <pre><code>git checkout -b branch origin/branchname </code></pre> http://stackoverflow.com/questions/67699/how-do-i-clone-all-remote-branches-with-git/67748#67748 2 Answer by Luuk Paulussen for How do I clone all remote branches with Git? Luuk Paulussen 2008-09-15T22:52:51Z 2008-09-15T22:52:51Z <p>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.</p> <p>To create a local branch based on a remote branch, do something like:</p> <pre>git checkout -b dev refs/remotes/origin/dev</pre> <p>Which should return something like:</p> <pre>Branch dev set up to track remote branch refs/remotes/origin/dev. Switched to a new branch "dev"</pre> <p>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.</p> http://stackoverflow.com/questions/67699/how-do-i-clone-all-remote-branches-with-git/72156#72156 27 Answer by emk for How do I clone all remote branches with Git? emk 2008-09-16T13:28:22Z 2008-09-16T13:28:22Z <p>First, clone a remote git repository and cd into it:</p> <pre><code>$ git clone git://example.com/myproject $ cd myproject </code></pre> <p>Next, look at the local branches in your repository:</p> <pre><code>$ git branch * master </code></pre> <p>But there are other branches hiding in your repository! You can see these using the <code>-a</code> flag:</p> <pre><code>$ git branch -a * master origin/HEAD origin/master origin/v1.0-stable origin/experimental </code></pre> <p>If you just want to take a quick peek at an upstream branch, you can check it out directly:</p> <pre><code>$ git checkout origin/experimental </code></pre> <p>But if you want to work on that branch, you'll need to create a local tracking branch:</p> <pre><code>$ git checkout -b experimental origin/experimental </code></pre> <p>Now, if you look at your local branches, this is what you'll see:</p> <pre><code>$ git branch master * experimental </code></pre> <p>You can actually track more than one remote repository using <code>git remote</code>.</p> <pre><code>$ git remote add win32 git://example.com/users/joe/myproject-win32-port $ git branch -a * master origin/HEAD origin/master origin/v1.0-stable origin/experimental win32/master win32/new-widgets </code></pre> <p>At this point, things are getting pretty crazy, so run <code>gitk</code> to see what's going on:</p> <pre><code>$ gitk --all &amp; </code></pre> http://stackoverflow.com/questions/67699/how-do-i-clone-all-remote-branches-with-git/108203#108203 0 Answer by webmat for How do I clone all remote branches with Git? webmat 2008-09-20T13:53:58Z 2008-09-20T13:53:58Z <p>Use my tool <a href="http://programblings.com/2008/08/06/time-to-git-collaborating-with-git_remote_branch/" rel="nofollow">git_remote_branch</a> (you need Ruby installed on your machine). It's built specifically to make remote branch manipulations dead easy.</p> <p>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 :-)</p> <p>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.</p> <p>Finally, all commands have aliases, to make memorization easier.</p> <p>Note that this is <a href="http://programblings.com/2008/08/06/time-to-git-collaborating-with-git_remote_branch/" rel="nofollow">alpha software</a> ;-)</p> <p>Here's the help when you run grb help:</p> <pre> 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 </pre> http://stackoverflow.com/questions/67699/how-do-i-clone-all-remote-branches-with-git/1186645#1186645 1 Answer by murphytalk for How do I clone all remote branches with Git? murphytalk 2009-07-27T06:10:37Z 2009-07-27T06:10:37Z <blockquote> <p>$ git checkout -b experimental origin/experimental</p> </blockquote> <p>use </p> <p><code>$ git checkout -t origin/experimental</code></p> <p>might be better, in terms of tracking remote repository.</p>