diff options
author | Michael Muré <batolettre@gmail.com> | 2023-01-14 14:21:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-14 14:21:01 +0100 |
commit | 98eb1c111efb22ddb02ab71779f1862abab4baa5 (patch) | |
tree | bb4d8bc2c1fd5614d274dab272e7dae03da5496b /doc | |
parent | 9c50a359704f4edd2f33df6d256e032feae3a576 (diff) | |
parent | 5bf274e64a3486bba21edd9bf455089839219f25 (diff) | |
download | git-bug-98eb1c111efb22ddb02ab71779f1862abab4baa5.tar.gz |
Merge pull request #933 from zinderic/feat-cleanup-subcommand
add cleanup sub-command that remove local bugs and identities
Diffstat (limited to 'doc')
-rw-r--r-- | doc/man/git-bug-wipe.1 | 27 | ||||
-rw-r--r-- | doc/man/git-bug.1 | 2 | ||||
-rw-r--r-- | doc/md/git-bug.md | 1 | ||||
-rw-r--r-- | doc/md/git-bug_wipe.md | 18 |
4 files changed, 47 insertions, 1 deletions
diff --git a/doc/man/git-bug-wipe.1 b/doc/man/git-bug-wipe.1 new file mode 100644 index 00000000..fc3178f6 --- /dev/null +++ b/doc/man/git-bug-wipe.1 @@ -0,0 +1,27 @@ +.nh +.TH "GIT-BUG" "1" "Apr 2019" "Generated from git-bug's source code" "" + +.SH NAME +.PP +git-bug-wipe - Wipe git-bug from the git repository + + +.SH SYNOPSIS +.PP +\fBgit-bug wipe [flags]\fP + + +.SH DESCRIPTION +.PP +Wipe git-bug from the git repository + + +.SH OPTIONS +.PP +\fB-h\fP, \fB--help\fP[=false] + help for wipe + + +.SH SEE ALSO +.PP +\fBgit-bug(1)\fP diff --git a/doc/man/git-bug.1 b/doc/man/git-bug.1 index 8b66d312..9bf59164 100644 --- a/doc/man/git-bug.1 +++ b/doc/man/git-bug.1 @@ -29,4 +29,4 @@ the same git remote you are already using to collaborate with other people. .SH SEE ALSO .PP -\fBgit-bug-bridge(1)\fP, \fBgit-bug-bug(1)\fP, \fBgit-bug-commands(1)\fP, \fBgit-bug-label(1)\fP, \fBgit-bug-pull(1)\fP, \fBgit-bug-push(1)\fP, \fBgit-bug-termui(1)\fP, \fBgit-bug-user(1)\fP, \fBgit-bug-version(1)\fP, \fBgit-bug-webui(1)\fP +\fBgit-bug-bridge(1)\fP, \fBgit-bug-bug(1)\fP, \fBgit-bug-commands(1)\fP, \fBgit-bug-label(1)\fP, \fBgit-bug-pull(1)\fP, \fBgit-bug-push(1)\fP, \fBgit-bug-termui(1)\fP, \fBgit-bug-user(1)\fP, \fBgit-bug-version(1)\fP, \fBgit-bug-webui(1)\fP, \fBgit-bug-wipe(1)\fP diff --git a/doc/md/git-bug.md b/doc/md/git-bug.md index b311aff5..a71d6dfb 100644 --- a/doc/md/git-bug.md +++ b/doc/md/git-bug.md @@ -34,4 +34,5 @@ git-bug [flags] * [git-bug user](git-bug_user.md) - List identities * [git-bug version](git-bug_version.md) - Show git-bug version information * [git-bug webui](git-bug_webui.md) - Launch the web UI +* [git-bug wipe](git-bug_wipe.md) - Wipe git-bug from the git repository diff --git a/doc/md/git-bug_wipe.md b/doc/md/git-bug_wipe.md new file mode 100644 index 00000000..be1a7246 --- /dev/null +++ b/doc/md/git-bug_wipe.md @@ -0,0 +1,18 @@ +## git-bug wipe + +Wipe git-bug from the git repository + +``` +git-bug wipe [flags] +``` + +### Options + +``` + -h, --help help for wipe +``` + +### SEE ALSO + +* [git-bug](git-bug.md) - A bug tracker embedded in Git + |