2012-06-22 122 views

回答

4

正確的命令是:

如果你想恢復到你的工作副本所做的更改,這樣做:
repo forall -c "git checkout ."

如果要恢復對索引所做的更改(即已添加的),請執行以下操作:
repo forall -c "git reset"

如果要恢復你已經犯了變化,這樣做:
repo forall -c "git revert ..."

1

然後使用git reset

回購並不是要取代Git,只是爲了讓它更容易在Android上下文中使用Git。 via

按照Repo command reference沒有git reset命令當量(沒有?)