Skip to content

Commit 13ab81f

Browse files
committed
Update admin/code_hosts/gitolite.schema.json schema for v6.5.1211
1 parent a9a7001 commit 13ab81f

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed

docs/admin/code_hosts/gitolite.mdx

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,10 @@ To connect Gitolite to Sourcegraph:
2727

2828
{/* SCHEMA_SYNC_START: admin/code_hosts/gitolite.schema.json */}
2929
{/* WARNING: This section is auto-generated during releases. Do not edit manually. */}
30-
{/* Last updated: Manual setup - will be automated via sourcegraph/sourcegraph releases */}
30+
{/* Last updated: 2025-07-01T23:25:38Z via sourcegraph/sourcegraph@v6.5.1211 */}
3131
```json
3232
{
3333
// A list of repositories to never mirror from this Gitolite instance. Supports excluding by exact name ({"name": "foo"}).
34-
"exclude": null,
3534
// Other example values:
3635
// - [
3736
// {
@@ -41,29 +40,41 @@ To connect Gitolite to Sourcegraph:
4140
// "pattern": ".*secret.*"
4241
// }
4342
// ]
43+
"exclude": null,
44+
45+
// SSH cipher to use when cloning via SSH. Must be a valid choice from `ssh -Q cipher`.
46+
"gitSSHCipher": null,
4447

48+
// SSH keys to use when cloning Git repo.
49+
"gitSSHCredential": null,
50+
51+
// REQUIRED:
4552
// Gitolite host that stores the repositories (e.g., [email protected], ssh://[email protected]:2222/).
46-
"host": null,
4753
// Other example values:
4854
4955
// - "ssh://[email protected]:2222/"
56+
"host": null,
5057

58+
// ⚠️ DEPRECATED: DEPRECATED: the Phabricator integration with Gitolite code hosts is deprecated
5159
// This is DEPRECATED
52-
"phabricator": null,
60+
"phabricator": {
61+
"callsignCommand": null,
62+
"url": null
63+
},
5364

65+
// ⚠️ DEPRECATED: DEPRECATED: the Phabricator integration with Gitolite code hosts is deprecated
5466
// This is DEPRECATED
5567
"phabricatorMetadataCommand": null,
5668

69+
// REQUIRED:
5770
// Repository name prefix that will map to this Gitolite host. This should likely end with a trailing slash. E.g., "gitolite.example.com/".
58-
//
5971
// It is important that the Sourcegraph repository name generated with this prefix be unique to this code host. If different code hosts generate repository names that collide, Sourcegraph's behavior is undefined.
60-
"prefix": null
6172
// Other example values:
6273
// - "gitolite.example.com/"
74+
"prefix": null
6375
}
6476
```
6577
{/* SCHEMA_SYNC_END: admin/code_hosts/gitolite.schema.json */}
66-
6778
## Configuration Notes
6879

6980
- **SSH Authentication Required**: Gitolite requires SSH key-based authentication. Ensure your Sourcegraph instance has proper SSH access to the Gitolite server.

0 commit comments

Comments
 (0)