git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Tracking branches and pulling on remote
@ 2011-01-05  0:58 Maaartin
  2011-01-05  5:01 ` Jeff King
  0 siblings, 1 reply; 4+ messages in thread
From: Maaartin @ 2011-01-05  0:58 UTC (permalink / raw)
  To: git

1.
I'm using git for couple of months and still don't get it. In a new repo a have 
two branches: master and X. I pushed both to the server, everything seems to 
work. However, there's origin/master but no origin/X in my repo. When I execute
git fetch --all -v
only master gets fetched. I've created an entry in the .git/config, no change. 
I've tried things like
git branch --track X origin/X
and all of them ends with an error message. Finally I've found out that
git config --add remote.origin.fetch refs/heads/X:refs/remotes/origin/X
seems to do it, was it right?

2.
I'd like to do some (at least for now) private changes on a foreign project. The 
ideal way I think about would be the following:
- my local repo is linked to my own server (for backup purposes and for private 
cooperation with a college)
- the repo on my server is linked to the github hosting the project
Now, I'd need to do something like
ssh myserver git fetch
and everything would be fine. I can do it this way, but I'd prefer something like
git remote fetch
or even
git fetch --remote-too
which would first make my server fetch from its origin and then my local repo 
fetch from my server. Is there such a thing? Would you recommend me doing it in 
a different way?

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-01-05 16:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-05  0:58 Tracking branches and pulling on remote Maaartin
2011-01-05  5:01 ` Jeff King
2011-01-05 16:40   ` Maaartin-1
2011-01-05 16:44     ` Jeff King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).