### 7. Configuration aliases
```sh
git config --global alias.show-graph 'log --graph --abbrev-commit --pretty=oneline'
```
> In this example, I’ve made up the show-graph alias and made it available for use in any
repository I make. Now when I use the command git show-graph , it is just like I had
typed that long git log command with all those options.