TIL: should I use single or double quotes in git commit messages?
both works fine, but go for the single quotes; double quotes might trigger "command substitution" on unix-like systems
for example:
```bash
$ echo "`ls`"
./docs/
./node_modules/
./package-lock.json
./package.json
./pages/
./README.md
```
