# Visualize git
https://johanneslerch.github.io/visualizing-git/
## commands
pres()
### Adding commits
git commit
### Creating a branch
git branch feature
git checkout feature
git checkout master
git branch feature2
git checkout feature2
### Merging with master
git merge feature
git merge feature2
### Delete unused branches
git branch -d feature
git branch -d feature2
undo
### Rebase with master
git rebase feature
git merge master