| OLD | NEW |
| (Empty) |
| 1 ## Usage | |
| 2 | |
| 3 Run `backfill <command>`! You can `backfill help git` for more detailed | |
| 4 docs for each command. | |
| 5 | |
| 6 ### git | |
| 7 | |
| 8 The `git` subcommand reads output from git log and writes the results to the | |
| 9 Revision entity group in datastore, including generation numbers. The git log | |
| 10 should be generated from running: | |
| 11 `git log --topo-order --reverse -z --format=format:'%H,%P,%ae,%ct,%b'` | |
| 12 | |
| 13 This should be done from a clone without local edits. | |
| 14 | |
| 15 ## Enabling remote API | |
| 16 You need to deploy some module to app engine which has the remote api enabled | |
| 17 in order for this backfiller to work successfully. | |
| 18 Full docs here: https://cloud.google.com/appengine/docs/go/tools/remoteapi | |
| 19 | |
| 20 You *should* be able to just `goapp deploy` in `/milo/appengine/remote_api`, | |
| 21 and then do `backfill buildbot -remoteURL | |
| 22 remote-api-1-dot-luci-milo.appspot.com`, or something like that. | |
| OLD | NEW |