# OK 02

# Source

# OK 02

```gitgraph
[option]
defaultBranch: master
[log]
git commit -m 'initial commit'
git switch -c feature/1
git commit -m '1'
git commit -m '2'
git checkout master
git merge feature/1
git tag v1.0.0

git checkout -b feature/2
git commit -m "3"
git commit -m "4"

git checkout master
git checkout -b feature/3
git commit -m '5'
git commit -m '6'

git switch master
git merge feature/2
git tag v1.1.0

git switch -c feature/4
git commit -m '7'
git commit -m '8'

git switch master
git merge feature/3
```