git config --global --list
git checkout .
git stash
git reset --hard HASH
git reset --soft HASH
git clean -df
git checkout . && git clean -xdf
git checkout -b fqf
git log --oneline
git status | grep modified | grep .c$
git branch -a
git branch -D fqf
git show
git reset --hard id
git reset id fileName
git push -f
git revert -n id
git stash list
git stash clear
git rm -r –cached directory
git status
git diff
git add .
git stash -u -k
git commit -m "xxx"
git pull origin master
git push origin master
git stash pop
git branch
git branch test
git checkout test
git push origin test
|