diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-04-11 17:30:43 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-04-11 17:30:43 -0400 |
commit | a57b056a2ccc772edeb39db4e50f081a3e742ef7 (patch) | |
tree | f7cc4a7d2d72fddf8a1910b297e56ad7dc22ea82 | |
parent | 9d3d07468a962ac70c2d54f9c8ae79bff52fe82f (diff) | |
download | sr.ht-docs-a57b056a2ccc772edeb39db4e50f081a3e742ef7.tar.gz |
Document mercurial use in build manifests
-rw-r--r-- | builds.sr.ht/manifest.md | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/builds.sr.ht/manifest.md b/builds.sr.ht/manifest.md index 36a33bd..fc38d27 100644 --- a/builds.sr.ht/manifest.md +++ b/builds.sr.ht/manifest.md @@ -56,8 +56,14 @@ page](/builds.sr.ht/compatibility.md) for details. *list* (of *string*) -A list of git repositories to clone into the home directory of the build -user in the build environment. +A list of repositories to clone into the home directory of the build user in the +build environment. Optionally, prefix the protocol with the source control +management scheme, to specify a protocol other than git. Examples: + +- `https://git.sr.ht/~sircmpwn/scdoc`: git over https +- `git@git.sr.ht:~sircmpwn/scdoc`: git over SSH ([requires key](private-repos.md)) +- `hg+https://hg.sr.ht/~sircmpwn/scdoc`: Mercurial over https +- `hg+ssh://hg.sr.ht/~sircmpwn/scdoc`: Mercurial over SSH ([requires key](private-repos.md)) ## tasks |