Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ If you're running an agent that streams markdown to a file, `gander watch` is th
gander signup --email you@example.com # opens browser form, polls for API token
gander share README.md # opens https://gander.md/s/xK7m2pQa
gander watch README.md # upload + live-update the remote viewer on save
# (same short id if you already shared that file from the dashboard)
gander share README.md --watch # same as `watch`, spelled out
gander share README.md --comments anyone # public review comments (opt-in; default is private)
gander share README.md --no-comments # hide viewer threads (comment_access=disabled)
Expand All @@ -205,7 +206,7 @@ gander remove --all # remove every share in your account
gander invite # print a team invite URL (shown once)
gander invite --email you@example.com # bind the invite to that address
gander invite --share xK7m2pQa # after accept, land on that private share
gander manage # opens the dashboard in your browser
gander manage # opens the dashboard (share, watch in-tab, filters, team, token)
gander dashboard # same as manage
gander dash # same as manage
gander --d # same as manage
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ func printUsage(w io.Writer) {
if authed {
fmt.Fprintln(w, " gander share [--watch] [--visibility=anyone|private|hidden] [--private]")
fmt.Fprintln(w, " [--comments=anyone|private|disabled] [--no-comments] <file>")
fmt.Fprintln(w, " Upload to gander.md and open the share link")
fmt.Fprintln(w, " Upload to gander.md (keeps a dashboard share of the same file)")
fmt.Fprintln(w, " gander watch [--visibility=anyone|private|hidden] [--private]")
fmt.Fprintln(w, " [--comments=anyone|private|disabled] [--no-comments] <file>")
fmt.Fprintln(w, " Live-share to gander.md and push every save (alias for `share --watch`)")
Expand Down