git版本resert回撤

resert到某一个

比较暴力的方法
git reset --hard <commit-id>
git push <reponame> -f         # 这样会消除截止到回溯版本的历史记录


比较温柔的做法
# Reset the index to the desired tree
git reset 56e05fced

# Move the branch pointer back to the previous HEAD
git reset --soft HEAD@{1}

git commit -m "Revert to 56e05fced"

# Update working copy to reflect the new commit
git reset --hard


更详尽内容
http://stackoverflow.com/questions/1895059/revert-to-a-commit-by-a-sha-hash-in-git

回溯之后其他已更新的代码库pull代码
git fetch --all
git reset --hard origin/master

更详尽内容
http://stackoverflow.com/questions/1125968/force-git-to-overwrite-local-files-on-pull

你可能感兴趣的:(git)