What are the consequences of having a remote branch with the same origin as another one?
For example
// Create branch foo but track origin/bar instead of origin/foo
git branch --track foo origin/bar
git push origin foo
What are the side effects of such links?