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?