diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 29 |
1 files changed, 24 insertions, 5 deletions
@@ -6,15 +6,29 @@ development workflow. Repo is not meant to replace Git, only to make it | |||
6 | easier to work with Git. The repo command is an executable Python script | 6 | easier to work with Git. The repo command is an executable Python script |
7 | that you can put anywhere in your path. | 7 | that you can put anywhere in your path. |
8 | 8 | ||
9 | * Homepage: https://gerrit.googlesource.com/git-repo/ | 9 | * Homepage: <https://gerrit.googlesource.com/git-repo/> |
10 | * Bug reports: https://bugs.chromium.org/p/gerrit/issues/list?q=component:repo | 10 | * Mailing list: [repo-discuss on Google Groups][repo-discuss] |
11 | * Source: https://gerrit.googlesource.com/git-repo/ | 11 | * Bug reports: <https://bugs.chromium.org/p/gerrit/issues/list?q=component:repo> |
12 | * Overview: https://source.android.com/source/developing.html | 12 | * Source: <https://gerrit.googlesource.com/git-repo/> |
13 | * Docs: https://source.android.com/source/using-repo.html | 13 | * Overview: <https://source.android.com/source/developing.html> |
14 | * Docs: <https://source.android.com/source/using-repo.html> | ||
14 | * [repo Manifest Format](./docs/manifest-format.md) | 15 | * [repo Manifest Format](./docs/manifest-format.md) |
15 | * [repo Hooks](./docs/repo-hooks.md) | 16 | * [repo Hooks](./docs/repo-hooks.md) |
16 | * [Submitting patches](./SUBMITTING_PATCHES.md) | 17 | * [Submitting patches](./SUBMITTING_PATCHES.md) |
17 | * Running Repo in [Microsoft Windows](./docs/windows.md) | 18 | * Running Repo in [Microsoft Windows](./docs/windows.md) |
19 | * GitHub mirror: <https://github.com/GerritCodeReview/git-repo> | ||
20 | * Postsubmit tests: <https://github.com/GerritCodeReview/git-repo/actions> | ||
21 | |||
22 | ## Contact | ||
23 | |||
24 | Please use the [repo-discuss] mailing list or [issue tracker] for questions. | ||
25 | |||
26 | You can [file a new bug report][new-bug] under the "repo" component. | ||
27 | |||
28 | Please do not e-mail individual developers for support. | ||
29 | They do not have the bandwidth for it, and often times questions have already | ||
30 | been asked on [repo-discuss] or bugs posted to the [issue tracker]. | ||
31 | So please search those sites first. | ||
18 | 32 | ||
19 | ## Install | 33 | ## Install |
20 | 34 | ||
@@ -34,3 +48,8 @@ $ PATH="${HOME}/.bin:${PATH}" | |||
34 | $ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/.bin/repo | 48 | $ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/.bin/repo |
35 | $ chmod a+rx ~/.bin/repo | 49 | $ chmod a+rx ~/.bin/repo |
36 | ``` | 50 | ``` |
51 | |||
52 | |||
53 | [new-bug]: https://bugs.chromium.org/p/gerrit/issues/entry?template=Repo+tool+issue | ||
54 | [issue tracker]: https://bugs.chromium.org/p/gerrit/issues/list?q=component:repo | ||
55 | [repo-discuss]: https://groups.google.com/forum/#!forum/repo-discuss | ||