答案 0 :(得分:4)
正确的命令是:
如果要还原对工作副本所做的更改,请执行以下操作:
repo forall -c "git checkout ."
如果要还原对索引所做的更改(即已添加的),请执行以下操作:
repo forall -c "git reset"
如果要还原已提交的更改,请执行以下操作:
repo forall -c "git revert ..."
答案 1 :(得分:1)
然后使用git reset
。
Repo并不是要取代Git,只是为了让它更容易在Android环境中使用Git。 via
根据Repo command reference,没有相当于git reset
的命令(还有?)