https://github.com/gabrielcsapo/git-todo
✓ getting things done with git
https://github.com/gabrielcsapo/git-todo
git todo utility
Last synced: 4 months ago
JSON representation
✓ getting things done with git
- Host: GitHub
- URL: https://github.com/gabrielcsapo/git-todo
- Owner: gabrielcsapo
- License: apache-2.0
- Created: 2018-09-28T06:47:58.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-08-02T18:48:02.000Z (almost 2 years ago)
- Last Synced: 2025-03-15T01:53:28.419Z (4 months ago)
- Topics: git, todo, utility
- Language: JavaScript
- Homepage: https://gabrielcsapo.github.io/git-todo
- Size: 23.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# git-todo
> ✓ getting things done with git
[](https://www.npmjs.com/package/git-todo)
[]()
[]()## Installation
```sh
npm install git-todo -g
```## Usage
```sh
$ git-todo --helpUsage
$ git-todo [options]Options
--quick, -q Don't get blame information
--verbose, -v Show an expanded output
--directory, -d Specify a directory relative to the one you are currently in
--filter, -f Filter todos by the given string
--author, -a Filter todos by the author
```## Output
> git todo
```sh
● 53y "foo bar" @gcsapo
/foo/bar.js (12:0)- /foo/bar.js
● 53y "foo bar" @gcsapo #foo, #bar
/foo/boo.js (12:0)- /foo/boo.js
```> git todo --quick
```sh
● 53y "foo bar" @gcsapo
/foo/bar.js (12:0)- /foo/bar.js
● 53y "foo bar" @gcsapo #foo, #bar
/foo/boo.js (12:0)- /foo/boo.js
```> git todo --verbose
```sh
● 53y "foo bar" @gcsapo
/foo/bar.js (12:0)- /foo/bar.js
● 53y "foo bar" @gcsapo #foo, #bar
/foo/boo.js (12:0)- /foo/boo.js
```