print git command results to stdout
git config --global core.pager "less -FRSX"fix mac os upgrade issue
sudo xcode-select --installupdate commit message
git commit --amendstash
git stash
git stash -u
git stash save "message" # for multiple stash
git stash list
git stash apply
git stash drop
git stash pop
git stash show stash@{1}
git stash apply stash@{1}
git stash drop stash@{1}
git stash branch new_changes # create branch, apply stash and drop stashtag
git tag -a v-1.0git ignore
git rm -r --cached .
git add .
git commit -m "fixed untracked files"