Learning git using Udemy course "GitHub Ultimate: Master Git and GitHub - Beginner to Expert" by Jason Taylor.
I hope this isn't much of a problem
git stash creates a stash saving a WIP copy w/ current changes
git stash list lists stashes that might exist
git tag <name> creates a tag
git tag -a <name> -m "annotation" creates an annotated tag
git tag -d <name> deletes a tag
git show <name> lists annotated milestone identified by tag name
git branch lists branches. Branch is label in timeline.
git checkout -b <name> switches to branch name