Create a branch alias? [duplicate]
Please see here: https://stackoverflow.com/a/549949/606723 You can rename the master branch trunk as Greg has suggested, or you can also create a trunk that is a symbolic reference to the master branch so that both git and svn users have the ‘main’ branch that they are used to. git symbolic-ref refs/heads/trunk refs/heads/master Note that trunk isn’t … Read more