- commit
- df3b689
- parent
- 1da1c02
- author
- Eric Bower
- date
- 2024-07-02 13:01:32 -0400 EDT
chore: add `git-pr` to list of repos
1 files changed,
+4,
-1
+4,
-1
1@@ -9,6 +9,9 @@ func NewPicoCfg() *git.GitCfg {
2 pico := git.NewRepo("pico", "git@github.com:picosh/pico")
3 pico.Desc = "hacker labs - open and managed web services leveraging ssh"
4
5+ pr := git.NewRepo("git-pr", "git@github.com:picosh/git-pr")
6+ pr.Desc = "the easiest git collaboration tool"
7+
8 ptun := git.NewRepo("ptun", "git@github.com:picosh/ptun")
9 ptun.Desc = "passwordless authentication for the web"
10
11@@ -24,6 +27,6 @@ func NewPicoCfg() *git.GitCfg {
12 return git.NewGitCfg(
13 "ssh_data",
14 "pr.pico.sh",
15- []*git.Repo{test, pico, ptun, pobj, send, docs},
16+ []*git.Repo{test, pico, ptun, pobj, send, docs, pr},
17 )
18 }