Skip to content

Commit d8f6347

Browse files
committed
chore(cli): update description
1 parent 0afba2d commit d8f6347

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

cli.go

+6-2
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ func printPatchsetFromPrID(sesh ssh.Session, pr GitPatchRequest, prID int64) err
173173
}
174174

175175
func NewCli(sesh ssh.Session, be *Backend, pr GitPatchRequest) *cli.App {
176-
desc := `Patchbin: a supercharged pastebin for git collaboration.
176+
desc := fmt.Sprintf(`git-pr: A pastebin supercharged for git collaboration.
177177
178178
Here's how it works:
179179
- External contributor clones repo (git-clone)
@@ -189,7 +189,11 @@ Here's how it works:
189189
- External contributor reviews and removes comments in code!
190190
- External contributor submits another patch (git-format-patch)
191191
- Owner applies patches locally (git-am)
192-
- Owner marks PR as accepted and pushes code to main (git-push)`
192+
- Owner marks PR as accepted and pushes code to main (git-push)
193+
194+
To get started, submit a new patch request:
195+
git format-patch main --stdout | ssh %s pr create {repo}
196+
`, be.Cfg.Url)
193197

194198
pubkey := be.Pubkey(sesh.PublicKey())
195199
userName := sesh.User()

0 commit comments

Comments
 (0)