git的一些操作
清空所有commit
git checkout --orphan latest_branch;
git add -A;
git commit -m "commit message";
git branch -D master;
git branch -m master;
git push -f origin master;
清空远程仓库
不清空.git直接清空仓库文件就git pull下来。删了所有文件,然后三连
git add . && git commit -m "delall" && git push
gitignore不起作用
git rm -r --cached .
git add .
git commit -m 'update .gitignore'