A golang cli program to manage your tasks.
Clone the repo:
git clone https://github.com/milinddethe15/GoDoIt.git
Build the program:
cd GoDoIt
go build -o godoit
#see usage
Use it to manage your task. Catergorize your task. Maintain all of your tasks history.
GoDoIt <command> [arguments]
Available commands:
add <task> <cat> Add a new task
list <done> List all tasks
update <id> <task> <cat> Update an existing task
delete <id> Delete an existing task
help Show this help message
#displays task
./godoit list
#Add task
./godoit add --task "Gym" --cat "After 4pm"
#delete task
./godoit delete --id 2
#update
./godoit update --id 2 --done
Distributed under the MIT License. See LICENSE
for more information.
- Fork it (https://github.com/milinddethe15/GoDoIt/fork)
- Create your feature branch (
git checkout -b feature/colorText
) - Commit your changes (
git commit -am 'Add some colorText'
) - Push to the branch (
git push origin feature/colorText
) - Create a new Pull Request