git-pending
Git plugin to list todo, fixme, testme and docme comments with verbose details
Installation
Run the command below to install the plugin
npm install -g git-pending
Usage
Open any git repository and run below command
git pending
This will list all the pending TODO
, FIXME
, TESTME
and DOCME
comments
Options
Here is the list of options that you can pass to modify the output of git pending
git pending [--oneline|-o ]
[--type|-t <fixme|testme|docme|todo>]
[--author|-a <author>]
[--no-stats]
[--strict]
[--help]
[--version]
Examples
Here is the list of sample usage examples
git pending
git pending --no-stats
git pending --oneline
git pending --type fixme
git pending --author kamran
git pending -t fixme -a kamran
git pending -t fixme -o
git pending --strict
If you don't pass --author
flag, it will show you the comments from everyone
git pending --author kamran --oneline
Not passing --oneline
flag will give you the detailed output with commit that introduced the comment
git pending --author kamran
Use --type
flag to specify the type of comments you need. Possible values (TODO
, FIXME
, TESTME
, DOCME
)
git pending --type TODO
git pending --type TESTME
git pending --type FIXME
git pending --type DOCME
License
MIT © Kamran Ahmed