Can I map local branches to remote branches with different prefixes in git?
问题 We're working with a semi-centralized git repository here where I work. Each developer has their own subtree in the central git repository, so it looks something like this: master alice/branch1 alice/branch2 bob/branch1 michael/feature release/1.0 release/1.1 Working locally in my tree I have topic/feature , which corresponds to michael/feature in the central tree. I've been using git push origin topic/feature:michael/feature to push my changes to the remote tree. However, this is cumbersome