upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/src/bin/git_remote_nostr
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2024-11-27 11:24:48 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2024-11-27 11:24:48 +0000
commit7f5984d0609dd7ad630623b6331234cc7ef5944a (patch)
tree73fb02b1c0adc33c82aef54acd58ebef7dee9c8d /src/bin/git_remote_nostr
parenta6be0dbe0f56095e64c18b150d220c7d851487a8 (diff)
build: update readme
to simplify and target users more than contributors and prioritise building from source
Diffstat (limited to 'src/bin/git_remote_nostr')
-rw-r--r--src/bin/git_remote_nostr/main.rs11
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