Dec. 19, 2018, 9:14 a.m., by Lem
[EVOLVING POST]
git fetch -p origin
(fetch branches from remote, prunes the local cache)git branch -a
(List all branches remote and local known by local)
git log --all --graph --decorate --oneline
(allows to see every known commit and stash, really helpful. May be confusing about graph lines)
(source: stack-overflow thread)git stash --all
(stashes all files, including untracked and ignored files)git stash --include-untracked
(no longer touches ignored files (tested on git 2.16.2))