git 常用命令
Posted ramlife
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 常用命令相关的知识,希望对你有一定的参考价值。
- 撤销提交
git reset --soft HEAD^
git reset --hard [commit_id]
注意: soft撤销可以保留已经修改的文件,hard 撤销完全恢复为指定的状态,抛弃已有的修改。
强制更新
git push origin HEAD --force
git push origin --force修改 commit 注释
git commit --amend修改仓库地址
git remote set-url origin [url]
git remote rm origin + git remote add origin [url]
以上是关于git 常用命令的主要内容,如果未能解决你的问题,请参考以下文章