-
Notifications
You must be signed in to change notification settings - Fork 0
Frequently Asked Questions
Mounir Youssef edited this page Jul 16, 2019
·
3 revisions
-
Why should branches be short-lived?
By keeping branches short-lived, merge conflicts are kept to as few as possible. - Why remove branches?
Your goal should focused on getting changes back into master as soon as possible, to mitigate long-term merge consequences. Temporary, unused and abundant branches cause confusion and overhead for the team. -
Do you have some suggested names for branches?
Some suggestions for naming your branches:
bugfix/description
features/feature-name
features/feature-area/feature-name
hotfix/description
Release/vX.Y.Z
-
Do you have a quick user guide for the most used git command lines?
To be done later.