We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6035751 commit ceff6a4Copy full SHA for ceff6a4
2 files changed
internal/cmd/git.go
@@ -27,6 +27,7 @@ func newGitCmd(app *App) *cobra.Command {
27
newGitOperationCmd(app, "commit"),
28
newGitOperationCmd(app, "push"),
29
newGitOperationCmd(app, "pull"),
30
+ newGitOperationCmd(app, "status"),
31
)
32
return gitCmd
33
}
internal/cmd/root.go
@@ -77,6 +77,7 @@ func NewRootCmd() *cobra.Command {
77
newGitShortcutCmd(app, "commit"),
78
newGitShortcutCmd(app, "push"),
79
newGitShortcutCmd(app, "pull"),
80
+ newGitShortcutCmd(app, "status"),
81
newRepoCmd(app),
82
newIssueCmd(app),
83
newPRCmd(app),
0 commit comments