git status
# if you have changes
git stash
git pull --rebase
# or
git pull --rebase <remote> <branch>
git stash pop
git stash list
git stash show -p
git stash show -p stash@{1}
This is not native command
git log --graph --decorate --pretty=oneline --abbrev-commit
Add this permanently to git config
git config --global alias.tree "log --graph --decorate --pretty=oneline --abbrev-commit"
git tree