Git常备命令
自省
git --help
git add --help
基本操作
git init
git add .
git add -e .
git delete test.txt
git commit -m 'fix sth.'
git status
git log
git reset
git diff
git checkout
远程操作
git clone https://github.com/stormhouse/pyStudy.git
git pull
git push -u origin master
查看 ...
more ...