I\'ve installed gitolite (locally for now, to experiment) and it seems to work, except that new repositories are not tracking the remote by default after a git clone. If I r
You can use git branch --set-upstream command, eg.: git branch --set-upstream develop origin/develop
git branch --set-upstream
git branch --set-upstream develop origin/develop