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 any I'm getting no joy at all.
|
25
|
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 any 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
|
||||||||
|
|
|
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. |
||
|
|
|
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. |
||
|
|
|
|
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". |
||||||||
|
|
|
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
|
||
|
|