Logs
Patchsets
Patchset ps-37
feat: improve documentation
Andreas Gruhler
git-pr.toml
+3
-1
feat: improve documentation
This improves documentation by stating the admin list needs to be populated with ssh pubkeys and that the config file repos can be configured with a default_branch name to show in the help text.
git-pr.toml
link
+3
-1
+3
-1
1diff --git a/git-pr.toml b/git-pr.toml
2index 1f81883..5546e6d 100644
3--- a/git-pr.toml
4+++ b/git-pr.toml
5@@ -2,7 +2,8 @@
6 url = "localhost"
7 # where we store the sqlite db, this toml file, git repos, and ssh host keys
8 data_dir = "./data"
9-# this gives users the ability to submit reviews and other admin permissions
10+# list of admin ssh pubkeys, authorized to submit review and other admin
11+# permissions
12 admins = []
13 # set datetime format for our clients
14 time_format = "2006-01-02"
15@@ -10,5 +11,6 @@ time_format = "2006-01-02"
16 # add as many repos as you want
17 [[repo]]
18 id = "test"
19+default_branch = "main"
20 clone_addr = "https://github.com/picosh/test.git"
21 desc = "Test repo"