cli.go
cli.go
}
func NewCli(sesh ssh.Session, be *Backend, pr GitPatchRequest) *cli.App {
- desc := `Patchbin: a supercharged pastebin for git collaboration.
+ desc := `git-pr: the simplest git collaboration tool.
Here's how it works:
- External contributor clones repo (git-clone)
app := &cli.App{
Name: "ssh",
Description: desc,
- Usage: "Collaborate with contributors for your git project",
+ Usage: "Send, receive, and review git patches",
Writer: sesh,
ErrWriter: sesh,
ExitErrHandler: func(cCtx *cli.Context, err error) {
return nil
},
Commands: []*cli.Command{
+ {
+ Name: "index",
+ Usage: "Generate an index page",
+ Args: true,
+ Action: func(cCtx *cli.Context) error {
+ indexFile := `{{template "base" .}}
+{{define "title"}}git-pr{{end}}
+
+{{define "meta"}}
+{{end}}
+
+{{define "body"}}
+<header class="group">
+ <h1 class="text-2xl">git-pr</h1>
+ <div>
+ <span>The simplest git collaboration service</span> · <a href="/e">explore</a>
+ </div>
+</header>
+
+<main></main>
+
+<footer class="mt">Built by <a href="https://pico.sh">pico.sh</a></footer>
+{{end}}`
+ wish.Println(sesh, indexFile)
+ return nil
+ },
+ },
{
Name: "logs",
Usage: "List event logs with filters",