Git Branch Naming Conventions
deepsource.io
Git Branch Naming Conventions
1–3 of 3 posts
Re: Git Branch Naming Conventions
#2Re: Git Branch Naming Conventions
#3What about the more common naming convention of using slash-separated branch names, which Git inherently understands? Git stores branches in .git/refs so by using slash-separators you capitalize on Git's behavior to keep branches in directories together. You can read more at https://git-scm.com/docs/user-manual#how-git-stores-referenc... and "Git - Branches in a Nutshell" is one of the must-read references: https://g…
As a user a/b/c is the same as a-b-c, with the exception that with the folder structure I can’t have a branch called a/b also, for technical reasons that aren’t clear to most users.
But what would any of that matter if all branch names are prepended with a unique ID? You’d never have 2 branches in the same sub folder.