pico
created pr with
21.1
cmds
checkout latest patchset:
ssh pr.pico.sh print 21 | git am -3checkout any patchset in a patch request:
ssh pr.pico.sh print 21.[rev] | git am -3add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 21
Patchset
21.1
feat: improve documentation
Andreas Gruhler
2024-08-28T22:37:42ZThis 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.
Semantic diff summary
0 added,
0 modified,
0 signature changed,
0 removed
across 0 analyzed files
(1 file skipped: unsupported file type)
+3
-1
git-pr.toml
#
| ... | ... | @@ -2,7 +2,8 @@ | |
| 2 | 2 | url = "localhost" | |
| 3 | 3 | # where we store the sqlite db, this toml file, git repos, and ssh host keys | |
| 4 | 4 | data_dir = "./data" | |
| 5 | - | # this gives users the ability to submit reviews and other admin permissions | |
| 5 | + | # list of admin ssh pubkeys, authorized to submit review and other admin | |
| 6 | + | # permissions | |
| 6 | 7 | admins = [] | |
| 7 | 8 | # set datetime format for our clients | |
| 8 | 9 | time_format = "2006-01-02" |