todo-gist-cli
v1.0.1
Published
ToDo list CLI powered by github gists
Downloads
5
Maintainers
Readme
todo
Installation
sudo npm i todo-gist-cli -g
Usage
Usage: todo [options] [command]
awesome todo list cli
Options:
-V, --version output the version number
-v, --verbose verbose mode
-q, --quiet quiet mode
-h, --help output usage information
Commands:
init|i <url> initialize with a gist from github
list|l list all todos
add|a <todo> add a todo
done|d <id> [ids...] mark as done
update|u fetch updates from remote gist (git pull)
Exmaples
# initialize with a gist (git should be working with ssh)
# create a secret gist at https://gist.github.com/. Below is an example
todo i [email protected]:13e1eb14f566f48be66d57ecbf99767d.git
# add todos
todo a "go to gym"
todo a "eat pizza"
todo a "eat burger"
# mark todos as done
todo d 2 3
# see pending todos
todo
# see help
todo -h