3

Im pretty new to android development although Ive been working on kernel for some time. The questions is: Ive made changes across modules in the kernel and from the top level directory of kernel, If I do git diff or git status, it shows all the changes that Ive made. This is fine.

Now, coming to Android, Ive made changes across multiple modules of android source and Ive lost track of all the changes that Ive made. I thought issuing git diff would fetch me all the changes that have gone into the android source. But unfortunately, when I did that, there is a message saying that it is not a git repository.

Now how can I find the changes that Ive made in android source? Should I have to go to each individual module like build/abi/bionic etc and do git diff? Any other way?

4

1 回答 1

3

Android 项目使用git-repo来管理所有的 git 存储库。

因此,要查看 Android 树中的所有差异,只需使用repo diff.

于 2014-06-24T12:26:33.000 回答