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.
使用repo 命令时如何进行回滚?
我对一些文件进行了一些更改,现在我想回滚到使用repo sync命令时下载的源。
repo sync
我还没有提交更改。
正确的命令是:
如果要恢复对工作副本所做的更改,请执行以下操作: repo forall -c "git checkout ."
repo forall -c "git checkout ."
如果您想恢复对索引所做的更改(即您添加的),请执行以下操作: repo forall -c "git reset"
repo forall -c "git reset"
如果要恢复已提交的更改,请执行以下操作: repo forall -c "git revert ..."
repo forall -c "git revert ..."
那就用git reset吧。
git reset
Repo 并不是要取代 Git,只是为了让在 Android 环境中使用 Git 更容易。通过
根据Repo 命令参考,没有等效的git reset命令(还没有?)