|
|
|
|
|
by garrybelka
2184 days ago
|
|
That works but: - pushes code into a master before it is ready - makes next to impossible to work on several tasks at a time: current state of incomplete tasks is spread all over in the master. Even working on a single multi-day task with multiple commits, it's harder to see the task changes and any slight feature refactoring during prototyping or development now involves master. An easy modification to this flow is: 1. Make a branch from master called `yourName/featureName` 2. While feature is not ready: 2.1. Work on the feature for a day or two max 2.2. Pull master, rebase your branch from master 3. Merge it right to master when your branch is ready |
|