From eb15ef63f54b2aed9fdd90d9a3a4da4e1f1b0a27 Mon Sep 17 00:00:00 2001 From: Emerson Soares Date: Thu, 19 Feb 2026 21:12:54 -0300 Subject: [PATCH] Add git-native-issue --- README.md | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/README.md b/README.md index 2af9081..8911bb0 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,7 @@ Inspired by the [awesome](https://github.com/sindresorhus/awesome) list thing. - [git-branchcut](#git-branchcut) - [git-exfiltrate](#git-exfiltrate) - [git-spend](#git-spend) +- [Git Native Issue](#git-native-issue) ## [git-extras](https://github.com/tj/git-extras) @@ -2062,6 +2063,62 @@ $ git spend sum --author stevemao --author antoine@goutenoir.com --since tags/v1 ``` +## [git-native-issue](https://github.com/remenoscodes/git-native-issue) + +### Create a new issue + +``` +$ git issue create "Fix login crash" -l bug -p critical +Created issue a7f3b2c +``` + +### List open issues + +``` +$ git issue ls +a7f3b2c [open] Fix login crash bug critical +b3e9d1a [open] Add dark mode support feature +``` + +### Show issue details + +``` +$ git issue show a7f3b2c +issue a7f3b2c + + Fix login crash + + State: open + Priority: critical + Labels: bug + Author: Dev User + Date: Wed, 19 Feb 2026 10:30:00 +0000 +``` + +### Add a comment + +``` +$ git issue comment a7f3b2c -m "Reproduced on iOS 18. Stack trace attached." +Added comment to a7f3b2c +``` + +### Close an issue + +``` +$ git issue state a7f3b2c --close -m "Fixed in commit 4e2f891" +Closed issue a7f3b2c +``` + +### Sync with GitHub + +``` +$ git issue import github:owner/repo +Imported 12 issues from github:owner/repo +$ git issue export github:owner/repo +Exported 3 issues to github:owner/repo +``` + + ## License [![CC0](https://i.creativecommons.org/p/zero/1.0/88x31.png)](https://creativecommons.org/publicdomain/zero/1.0/)