to make a Hotfix (Ex: `git stash`) Adding a description to your stash (Ex: `git stash save “message here”`) Viewing a list of your stashed items (Ex: `git stash list`) Popping stashed items from the list (Ex: `git stash pop stash@{#}` *Destructive*) Applying stashed items from the list (Ex: `git stash apply stash@{#}`) git stash documentation
commit it to the repository Push a slack notification whenever you update the remote repository Create a personal log of commits for your own sake Automatically run test suite before committing to the repository git hook documentation