4

I have downloaded the android source repository with repo as documented. After that I'm synchronizing with 'repo sync' on a regular basis. That all works fine. However, I would like to obtain a list of recent changes between the different syncs. How can tat be done?

Thanks in advance.

Regards, Mike

Yury
  • 20,618
  • 7
  • 58
  • 86

1 Answers1

0

You can use this repo changelog subcmd.

You then can run the following commands:

repo sync -n
repo changelog --revisions='HEAD..aosp/master' 
repo sync
Edric
  • 24,639
  • 13
  • 81
  • 91
sagi
  • 523
  • 3
  • 15