On Tuesday 08 May 2012 13:23:16 Peter Ertl wrote: > small typo: > > $ git config --global --add branch.autosetuprebase remote > > Am 08.05.2012 um 13:19 schrieb Peter Ertl: > > $ git config --config --add branch.autosetuprebase remote
We use that option here at Topicus. The problem with that option is that people still don't know what rebase does and when not to use it. That makes it quite a dangerous setting. Btw, it only works for newly created tracking branches, for existing branches, you will have to use git config branch.<branchnane>.rebase true Personally, I rebase manually, either with git pull --rebase or with git rebase origin/master. Best regards, Emond
