Update start-using-git.md

This commit is contained in:
Butch Anton 2016-07-21 16:49:40 +00:00
parent 2af769c336
commit dc7805cd99
1 changed files with 8 additions and 0 deletions

View File

@ -120,3 +120,11 @@ You need to be in the created branch.
git checkout NAME-OF-BRANCH
git merge master
```
### Merge master branch with created branch
You need to be in the master branch.
```
git checkout master
git merge NAME-OF-BRANCH
```