When fixing an issue I want to make sure that I close the correct issue writing in the commit message: "Fixed #issueId"
.
To be faster I would like to list the repository issues in terminal. Is this possible with a git
command?
I imagine something like below:
$ git issues --all
+---------------------------------------+
| Repository Name - Issues |
+---------------------------------------+
| # | Title | Status |
+---------------------------------------+
| 1 | Lorem Ipsum 1 | OPEN |
| 2 | Lorem Ipsum 2 | WONTFIX |
| 3 | Lorem Ipsum 3 | RESOLVED|
| 4 | Lorem Ipsum 4 | INVLID |
+---------------------------------------+