git basics
Repos versus Branches – A repo can have as many branches. And you can have multiple REPOS (typically one per product).
Branching Best Practices
Master (Prod Branch) —> Dev Branches –> Topic Branches (that get merged to dev branch in LOCAL git).
Topic Branch Merge into Dev Branch does not make it to actual DEV branch until a Pull Request is made. It only merges and commits into your local git repo.
Leave a Reply