DEV Community

Discussion on: How do you name your GIT branch?

Collapse
 
ridaehamdani profile image
Ridae HAMDANI

I think is not important if you use "-" or "/" or "_" to split your branch name. The most important thing to consider is using the main goal for your branch as a base name for your branch. e.g:

  • feature-XXXXXX
  • issue-MMMMMM
  • hotfix-YYYY
  • release-ZZZZZ
Collapse
 
gauravkukade profile image
Gaurav Kukade

I think is not important if you use "-" or "/" or "_" to split your branch name.

Well said Rihade!

Thanks for the valuable suggestion.