Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
git reset --hard HEAD我是 git 新手,所以问题可能很简单,和之间有什么区别git reset --hard?
git reset --hard HEAD
git reset --hard
HEAD当您未指定该参数时,是隐含的。
HEAD
但是,您可以做例如git reset --hard HEAD^在 HEAD 处取消提交,即以重写历史的方式撤消它。
git reset --hard HEAD^