How to store a git symbolic-ref

We need to normalize the git branching structure. If we create new branches for the new branch names it will create a ton of work to update our Jenkins / TeamCity / etc. git symbolic-ref refs / head / new-branch-name refs / head / old-branch-name does exactly what we need - but doesn't push to the remote repository on push, so it needs to be recreated every time you clone the repo ... Is there a way to get a symbolic ref to save? Or another way to achieve this symbolic link effect?

+3


source to share





All Articles