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 months 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 (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-11-12T01:44:44.000Z (over 1 year ago)
- Last Synced: 2025-06-05T04:42:44.586Z (about 1 year ago)
- Topics: git, prototype, todo-list
- Language: Shell
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 2
- 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
~~~
list
List 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
~~~