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.
我安装了Homebrew。“brew --prefix”是/usr/local。我现在错误地对本地 Brew Git 存储库的主分支做了一些与“brew update”无休止的冲突的事情。我想丢弃或忽略我的本地更改。通常我只是 rm -rf repo 并重新克隆,但我不认为 rm -rf /usr/local 是明智的。
如何让我的本地 Brew Git 存储库满意?
git reset --hard origin/master应该使所有内容与主 Homebrew Git 存储库同步。它会丢弃您对 repo 中跟踪的文件所做的任何本地更改。
git reset --hard origin/master