使用repo命令回滚?

时间:2012-06-22 08:32:38

标签: android git repository

使用repo command时如何进行回滚?

我在某些文件中做了一些更改,现在我想回滚到使用repo sync命令时下载的源代码。

我没有做出改变。

2 个答案:

答案 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的命令(还有?)