Sourcecode: Advanced / professional YWM-Gitflow to develop new features or fix bugs

Step 1. (prepare branch) : check out from develop branch

$git checkout develop

$git checkout –b fix_issue_a


Step 2. (develop the feature, fix the issue)
$ git add

$ git commit …

$ git push …

Step 3. rebase, squash merge to develop

$ git checkout develop

$ git pull origin develop
$ git checkout fix_issue_a
$ git rebase develop
$ git checkout develop

$ git merge –squash fix_issue_a
$ git commit –m ‘fix issue A’

$ git push develop

Loading

What’s your Reaction?
+1
0
+1
0
+1
0

Leave a Reply

Your email address will not be published. Required fields are marked *