git 如何批量删除本地所有未提交的更改

2025年03月22日 09:52
有1个网友回答
网友(1):

git reset HEAD --hard
或者:

git add . && git stash && git stash drop