git config --global user.email xxx@xx.com
git config --global user.name xxx
git config --global http.sslVerify false
git clone https://xxx.git
git branch -a 查看远程分支
git restore file 还原一个文件
git reset --soft HEAD^ 取消最近commit
git reset --hard
运行命令 git reset --hard 刚刚复制的commitId,就可以成功回退到那个版本。
--撤销push
git log
git reset --soft commit-id
git log
git push origin master --force
git checkout 分支名称
文件名太长
git config --system core.longpaths true