diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-15 20:31:40 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-15 20:31:40 +0200 |
commit | 6cdc6c087e858e18c5c54e92c60ceb78a37fc3f2 (patch) | |
tree | 13f378972d6dd152be5adfcf2df2c2b6aee95db8 /doc/md/git-bug_add.md | |
parent | bfb5e96aab9e78f05942151060cc92fdaa32bedd (diff) | |
download | git-bug-6cdc6c087e858e18c5c54e92c60ceb78a37fc3f2.tar.gz |
commands: add `git bug comment add` to add a comment
Diffstat (limited to 'doc/md/git-bug_add.md')
-rw-r--r-- | doc/md/git-bug_add.md | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/doc/md/git-bug_add.md b/doc/md/git-bug_add.md new file mode 100644 index 00000000..21060f61 --- /dev/null +++ b/doc/md/git-bug_add.md @@ -0,0 +1,25 @@ +## git-bug add + +Create a new bug + +### Synopsis + +Create a new bug + +``` +git-bug add [flags] +``` + +### Options + +``` + -t, --title string Provide a title to describe the issue + -m, --message string Provide a message to describe the issue + -F, --file string Take the message from the given file. Use - to read the message from the standard input + -h, --help help for add +``` + +### SEE ALSO + +* [git-bug](git-bug.md) - A bugtracker embedded in Git + |