Hi, On Sun, 11 Nov 2007, Michael Dressel wrote: > > >Michael Dressel wrote: > >Ok nice. Another thing is that git-push will push all the tracking > >branches in refs/remotes/origin. > > I learned that I only have to edit the .git/config file to avoid that > git-push pushes everything. It is documented that you can use "git push origin <branchname>". > [remote "origin1"] > url = /home/repo/src > fetch = +refs/heads/master:refs/remotes/origin/master > push = +refs/heads/master:refs/heads/master With "push", it is not necessary to specify the ":<target>". Also, if "master" is unambiguous, you can write just "master" instead of "refs/heads/master". Furthermore, I suggest not forcing (that's what "+" does) the push, since it is quite possible that you push something old in the wrong direction. Hth, Dscho - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html