Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/birchb1024/gitodo
Use Git to store and update todo lists and issues.
https://github.com/birchb1024/gitodo
git prototype todo-list
Last synced: 2 days ago
JSON representation
Use Git to store and update todo lists and issues.
- Host: GitHub
- URL: https://github.com/birchb1024/gitodo
- Owner: birchb1024
- License: mit
- Created: 2018-09-19T06:18:36.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-21T01:59:02.000Z (3 months ago)
- Last Synced: 2024-08-21T02:58:26.235Z (3 months ago)
- Topics: git, prototype, todo-list
- Language: Shell
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gitodo
Use Git to store and update todo lists and issues.## Installation
### Prerequisites
Install `fzf` see [link](https://github.com/junegunn/fzf#installation)
or
```
go get -u github.com/junegunn/fzf
```## Install gitodo
* Clone this repo
* Install fzf (https://github.com/junegunn/fzf)
* Set some environment variables~~~
export TODO_DIR=/some/directory
~~~* Create the repo
~~~
cd $TODO_DIR; git init
~~~## Usage
~~~
listList all open items
did
Print history of the current item
doing
Choose a new active branch , provide a string to search for in the list of items
Example:
$ doing world
what
Print the active item
nb
Add a one-line comment record to the current branch
Example:
$ nb Linus says sorry
memo
Add a multi-line commit to the current item
todo
Create a new item todo
Example:
$ todo Solve world hunger
fin
Finish an item, remove it from the list. Optionally provide an inital search string.
Example:
$ fin hunger
~~~