Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jhspetersson/git-task
Local-first task manager/bug tracker that stores everything right in the git repository and can sync issues from/to GitHub or Gitlab.
https://github.com/jhspetersson/git-task
bug bug-tracker cli git github gitlab manager rust task task-manager tracker
Last synced: 3 months ago
JSON representation
Local-first task manager/bug tracker that stores everything right in the git repository and can sync issues from/to GitHub or Gitlab.
- Host: GitHub
- URL: https://github.com/jhspetersson/git-task
- Owner: jhspetersson
- License: mit
- Created: 2024-08-02T21:06:50.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-10-16T15:03:23.000Z (3 months ago)
- Last Synced: 2024-10-22T02:17:58.323Z (3 months ago)
- Topics: bug, bug-tracker, cli, git, github, gitlab, manager, rust, task, task-manager, tracker
- Language: Rust
- Homepage:
- Size: 820 KB
- Stars: 18
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# git-task
Local-first task manager/bug tracker within your git repository which can import issues from GitHub or Gitlab.
[![build](https://github.com/jhspetersson/git-task/actions/workflows/rust.yml/badge.svg)](https://github.com/jhspetersson/git-task/actions/workflows/rust.yml)
![](https://github.com/jhspetersson/git-task/blob/master/resources/gt2.gif)
## Installation
Build a binary, then add it as a git command:
cargo install git-task
git config --global alias.task '!~/.cargo/bin/git-task'Now you can switch to some git repo and run it as:
git task create "My first task"
Or import issues from GitHub (`GITHUB_TOKEN` or `GITHUB_API_TOKEN` env variable might be needed to be set up if you have a private repository)
or Gitlab (`GITLAB_TOKEN` or `GITLAB_API_TOKEN` is needed then):git task pull
## Concepts
`git-task` maintains a collection of tasks, which are essentially an integer ID and a set of properties.
Some properties are special: `name`, `description`, `author`, `created` and `status`. You can add custom properties for every task.
It's possible to define conditional color highlighting depending on the value of the property.Tasks can have comments that are also addressed by their ID.
Status can be anything, but it expected to be one of the several defined statuses.
By default, there are three: `OPEN` for new tasks, `IN_PROGRESS` for the tasks that are in development, `CLOSED` for complete ones.
You can freely edit this list.However, for the sake of sync with GitHub there are two config options to map remote `OPEN` and `CLOSED` statuses with local ones.
## Commands
### list
Lists all tasks.
git task list
Show only open tasks:
git task list -s o
git task list --status oShow only closed tasks:
git task list -s c
Show only tasks with a custom status:
git task list --status DEPLOYED
Show tasks that are new or in progress:
git task list -s OPEN,IN_PROGRESS
git task list -s o,iFilter by keyword:
git task list -k linux
Filter by date:
git task list --from 2024-01-01
git task list --until 2023-12-31Filter by author:
git task list --author jhspetersson
Show specific columns:
git task list --columns id,status,name
Sorting by one or more task properties:
git task list --sort author
git task list --sort "status, created desc"Limit displayed task count:
git task list -l 10
git task list --limit 5### show
Shows one task with all the properties (like id, name, status, description and a bunch of custom ones, actually, you can add whatever you like).
git task show 1
### create
Creates a new task.
git task create "Fix my Fizz Buzz implementation"
git task create "Task title" "Task description"
git task create "This task goes without description" --no-desc
git task create "Create a task and push it to GitHub" --push### status
Updates task status.
git task status 1 IN_PROGRESS
git task status 1 i
git task status 2..5 10 12 c### get
Prints task property.
git task get 1 description
### set
Sets task property:
git task set 1 description "I figured it out all wrong. Fizz Buzz has to be rewritten in Rust!"
### unset
Delete a property:
git task unset 1 foo
git task unset 1..10 foo### edit
Edit task property in the default git editor.
git task edit 1 description
For Windows, we recommend anything, but `notepad`. `Notepad++` is just fine.
You can set it up this way:git config --global core.editor "C:\\Program Files\\Notepad++\\notepad++.exe"
### comment
Add, edit or remove comments:
git task comment add 1 "This is a comment to my first task"
git task comment edit 1 1
git task comment del 1 1You can sync comments with the remote source:
git task comment edit 159 2334900009 --push
### import
Import all or selected tasks from JSON file.
git task import my_tasks.json
git task export --pretty 2..5 10 12 >my_tasks.json
git task export --status o,i
git task export --limit 50### pull
Grab issues from remote source (currently, only GitHub is supported).
For private repositories you have to set up `GITHUB_TOKEN` or `GITHUB_API_TOKEN` environment variable for GitHub.
`GITLAB_TOKEN` or `GITLAB_API_TOKEN` are required for Gitlab-hosted repositories.git task pull
git task pull --no-comments
git task pull 2 3 4 5 10 12
git task pull 2..5 10 12
git task pull --limit 50Pull only open issues:
git task pull -s o
git task pull --status OPEN### push
Push status of the selected tasks to the remote source.
For GitHub you have to set up `GITHUB_TOKEN` or `GITHUB_API_TOKEN` environment variable.
`GITLAB_TOKEN` or `GITLAB_API_TOKEN` are required for Gitlab-hosted repositories.git task push 2 3 4 5 10 12
git task push 2..5 10 12### stats
Show total task count, count by status and top 10 authors.
git task stats
### delete
Deletes one or more tasks by their IDs or status.
git task delete 1
git task delete 2 3 4 5 10 12
git task delete 2..5 10 12
git task delete -s CLOSED
git task delete -s cAlso delete a corresponding GitHub issue:
git task delete 120 --push
### clear
Deletes all tasks.
git task clear
### config
Maintain configuration parameters.
git task config list
git task config get task.list.columns
git task config get task.list.sort
git task config get task.status.open
git task config get task.status.closed
git task config get task.refCustomize sorting:
git task config set task.list.sort "created desc"
Customize columns:
git task config set task.list.columns id,author,status,name
By default `git-task` saves everything under a custom ref. You can change that to a regular branch like this:
git task config set task.ref refs/heads/tasks
Remove old ref after setting a new one:
git task config set task.ref refs/heads/tasks --move
Configure task statuses:
git task config status list
git task config status set CLOSED color Magenta
git task config status set CLOSED name FINISHED
git task config status set FINISHED shortcut f
git task config status set FINISHED style bold,italic
git task config set task.status.closed FINISHEDColors available:
Black, DarkGray, Red, LightRed, Green, LightGreen, Yellow, LightYellow, Blue, LightBlue, Purple, LightPurple, Magenta, LightMagenta, Cyan, LightCyan, White, LightGray
Or one-byte value like:
239Styles available:
bold, dimmed, italic, normal, strikethrough, underline
Add and delete statuses:
git task config status add ARCHIVE a Magenta true
git task config status delete ARCHIVE
git task config status delete aYou can export status config, edit it manually and import it back:
git task config status export --pretty >statuses.json
git task config status import