Sometimes I want to be able to pull from a repo (via clone). But when I do that and then change to a local branch to pull-in a remote branch, git assumes I want to take the main branch and integrate it. How do I avoid this? I'm sure I can achieve what I want by a different series of actions/commands.

I'd say I normally run into this when I want to work on a specific branch on a secondary machine.

update:
I run the following commands on a secondary machine where I only want to work on the experiment branch

git clone http://somewhere.com/something.git    
git branch experiment    
git checkout experiment   
git pull origin experiement    
link|improve this question

71% accept rate
2  
could you show the exact commands you are executing, and what exactly is going wrong? – rejj Jan 10 at 14:28
1  
Agreed. Need an example. Simply cloning and changing branches shouldn't force any automatic "integration". – wadesworld Jan 10 at 14:33
feedback

2 Answers

up vote 1 down vote accepted

Each branch needs to point at some commit. If you don’t specify anything, git branch points the new branch at at the same commit as HEAD.

You want the branch to point at origin/experiment instead:

git clone http://somewhere.com/something.git
cd something
git branch experiment origin/experiment
git checkout experiment

or…

git clone http://somewhere.com/something.git
cd something
git checkout -b experiment origin/experiment

or, since git is smart enough to know what you’re trying to do in this case…

git clone http://somewhere.com/something.git
cd something
git checkout experiment

All of these will do the same thing (create the new branch pointing at origin/experiment). They’ll also set the branch up to track origin/experiment, so push and pull will be to and from that remote branch.

link|improve this answer
does that allow you to use the shorter syntax for your push and pulls without typing the remote branch name? – brun Jan 10 at 17:27
@brunot Yep, it does. – Sidnicious Jan 10 at 21:23
feedback

If you only want to get the branches from the remote or remotes without merging anything you can just do a

git fetch --all

or

git fetch [remote]

I usually just open the git gui and click remotes>fetch>[remote] and then I use

gitk --all 

to see what is done on the remote branches.
I can then merge if I want to... git pull means a fetch+merge

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.