Command Line Issue Manager using git as backend
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Dominik Meyer ab0ebcbebf
ADD: set minium Ansitable version
2 years ago
bin FIX: added pod documentation 5 years ago
lib/App/Git ADD: set minium Ansitable version 2 years ago
.gitignore ADD: ignore more files 5 years ago
LICENSE.txt ADD: added License file 5 years ago
README.md ADD: added Readme.md 5 years ago
dist.ini ADD: updated repository url 2 years ago
weaver.ini ADD: added configuration for Pod::Weaver 5 years ago

README.md

App::Git::IssueManager

App::Git::IssueManager is a Perl Application for using git as an issue store creating a distributed issue management system. It uses the Git::IssueManager Module to implement all management fu.

EXAMPLE

git issue init -t "TST"   # initialize the issue management in an existing git reposittory
git issue add -s "Bug1" -d "This is a bug"  # add an issue
git issue list            # list all open issues
git issue                 # list all available commands

MOTIVATION

Issue management is an essential part in modern software engineering. In most cases tools like jira or github are used for this task. The central nature of these tools is a large disadvantage if you are often on the road. Furthermore if you are using git for version control you have everything available for distributed issue management.

Advantages

  • save your issues within your project
  • manage issues on the road, without internet access
  • write your own scripts for issue management

Disadvantages

  • no easy way to let users add issues without pull request yet
  • not all functions implemented yet

FEATURES

  • add issues
  • list issues
  • assign workers to an issue
  • start and close issues
  • delete issues