Skip to content

kakakakakku/togoo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

44 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Togoo Build Status Go Report Card

Togoo : Simple CLI TODO Tool, using Golang and SQLite.

Usage

Install

To install, use go get:

$ go get -u github.com/kakakakakku/togoo
$ togoo init

Commands

init
add, a
update, u
list, l
done, d
delete
help, h

Usage

โžœ  ~  togoo add xxx
โžœ  ~  togoo add yyy
โžœ  ~  togoo list
+----+-------+--------+
| NO | TITLE | STATUS |
+----+-------+--------+
|  1 | xxx   | -      |
|  2 | yyy   | -      |
+----+-------+--------+
โžœ  ~  togoo done 1
โžœ  ~  togoo list
+----+-------+--------+
| NO | TITLE | STATUS |
+----+-------+--------+
|  2 | yyy   | -      |
+----+-------+--------+
โžœ  ~  togoo list -a
+----+-------+--------+
| NO | TITLE | STATUS |
+----+-------+--------+
|  1 | xxx   | Done   |
|  2 | yyy   | -      |
+----+-------+--------+

Contribution

  1. Fork (https://github.com/kakakakakku/togoo/fork)
  2. Create a feature branch
  3. Commit your changes
  4. Rebase your local changes against the master branch
  5. Run test suite with the go test ./... command and confirm that it passes
  6. Run gofmt -s
  7. Create a new Pull Request

Author