git --version
touch index.html
git init
git config --global user.name ‘sam_wang‘
git config --global user.email ‘sam_wang10@foxmail.com‘
git add index.html
git add *.html
git add .
git rm --cached index.html
git status
git commit -m ‘change comment‘
原文:https://www.cnblogs.com/samwang10/p/14347751.html