Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gabrielcsapo/git-todo
✓ getting things done with git
https://github.com/gabrielcsapo/git-todo
git todo utility
Last synced: 21 days 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 (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-08-02T18:48:02.000Z (over 1 year ago)
- Last Synced: 2024-10-13T20:44:45.999Z (24 days ago)
- Topics: git, todo, utility
- Language: JavaScript
- Homepage: https://gabrielcsapo.github.io/git-todo
- Size: 23.4 KB
- Stars: 2
- Watchers: 3
- 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
[![Npm Version](https://img.shields.io/npm/v/git-todo.svg)](https://www.npmjs.com/package/git-todo)
[![npm](https://img.shields.io/npm/dt/git-todo.svg)]()
[![npm](https://img.shields.io/npm/dm/git-todo.svg)]()## 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
```