git 上传
git add .
冲突时吃的解决方案
git stash
git pull
git stash pop
git commit -m “2021.09.22上传”
git push --set-upstream http://xxx.xxx.xxx.git
拉取整个项目包括子模块
git clone --recursive [address]
不提交文件状态的修改
git config core.filemode false
本地重置
git reset --hard
远程回退
git reset --hard d0500c5bf80c91d0f85376cbcfecb517b09c8696 回退到某个版本
git pull -f