Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Project management with Git integration [closed]

I've looked around for a project management system, I've tried to use this one but it lacks some features I want and doesn't really seem to be under any sort of active development.

I only need a few features:

  1. Basic project/task management
  2. Very good git integration (when I pull/push my repo I want the management files to go too)
  3. Vim integration (or at least use the editor I have set a la 'export EDITOR=/usr/bin/vim'
  4. A note taking system (for meetings ideally)
  5. Command line interface, there can be other interfaces too, but I really want CLI.

Of all the project management systems I've found, fossil comes closest to satisfying my needs, but still falls short.

like image 422
devin Avatar asked Oct 01 '10 23:10

devin


People also ask

Can GitHub be used for project management?

The project boards and functions mean GitHub can serve as a project management tool. It still lacks some advanced capabilities, such as generating reports or synchronizing repositories. But many third-party tools can integrate with GitHub to make it even more powerful. Here's a list of the top integrations.

Is git a project management software?

GitScrum is an agile project management tool, ideal for planning and tracking of multiple projects and teams.

Can GitLab be used for project management?

GitLab enables lean and Agile project management from basic issue tracking to Scrum and Kanban-style project management. Whether you're simply tracking a few issues or managing the complete DevOps lifecycle across a team of developers, GitLab has your team covered.


2 Answers

What about Trac or Redmine? They all cover your needs, except "Vim integration"

like image 56
return1.at Avatar answered Sep 20 '22 22:09

return1.at


Maybe one of the Org-mode clones for VIM (e.g. VimOrganizer) is the right tool for you:

  1. It is designed for task managment
  2. It uses only text files => git can track everything
  3. It's integrated in VIM
  4. Emacs Org-mode has a powerful note taking system (called capture). I don't know about the VIM clones. But at least you can write your notes directly into the plain text files.
  5. There is no real CLI, but maybe VIM is all you want/need?
like image 23
Michael Avatar answered Sep 17 '22 22:09

Michael