赞
踩
强制更新到最新版本
git fetch --all
git reset --hard origin/master
git pull
强制更新到指定版本
git reset --hard 提交ID
撤消指定1个或多个版本的修改并提交
git revert 提交ID1 提交ID2 提交ID3
git push origin master
撤消最新版本的修改并提交
git revert HEAD
git push origin master
git 清除当前所有更改
git checkout .
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。