diff options
Diffstat (limited to 'src/bin/git_remote_nostr/main.rs')
| -rw-r--r-- | src/bin/git_remote_nostr/main.rs | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/bin/git_remote_nostr/main.rs b/src/bin/git_remote_nostr/main.rs index e4f97c7..6b89be6 100644 --- a/src/bin/git_remote_nostr/main.rs +++ b/src/bin/git_remote_nostr/main.rs | |||
| @@ -123,11 +123,14 @@ fn process_args() -> Result<Option<(NostrUrlDecoded, Repo)>> { | |||
| 123 | println!("nostr plugin for git"); | 123 | println!("nostr plugin for git"); |
| 124 | println!("Usage:"); | 124 | println!("Usage:"); |
| 125 | println!( | 125 | println!( |
| 126 | " - add a nostr repository as a remote by using the url format nostr://pub123/identifier" | 126 | " - clone a nostr repository, or add as a remote, by using the url format nostr://pub123/identifier" |
| 127 | ); | ||
| 128 | println!( | ||
| 129 | " - remote branches begining with `pr/` are open PRs from contributors; `ngit list` can be used to view all PRs" | ||
| 130 | ); | ||
| 131 | println!( | ||
| 132 | " - to open a PR, push a branch with the prefix `pr/` or use `ngit send` for advanced options" | ||
| 127 | ); | 133 | ); |
| 128 | println!(" - remote branches begining with `pr/` are PRs from contributors"); | ||
| 129 | println!(" - to open a PR, push a branch with the prefix `pr/`"); | ||
| 130 | println!(" - branches with this prefix are issued by the maintainer(s)"); | ||
| 131 | return Ok(None); | 134 | return Ok(None); |
| 132 | }; | 135 | }; |
| 133 | 136 | ||