You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/milestones/finish.go
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,15 @@ import (
10
10
"github.com/spf13/cobra"
11
11
)
12
12
13
+
var (
14
+
finishMilestoneProjectFlagstring
15
+
)
16
+
13
17
funcFinishCmd() *cobra.Command {
14
18
cmd:=&cobra.Command{
15
19
Use: "finish",
16
20
Short: "Finish the active milestone",
17
-
Long: `Finish the currently active milestone for the current project. This marks the milestone as completed and stops auto-tagging new time entries with it.`,
21
+
Long: `Finish the currently active milestone for the current project, or the one specified. This marks the milestone as completed and stops auto-tagging new time entries with it.`,
Copy file name to clipboardExpand all lines: cmd/milestones/start.go
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,15 @@ import (
10
10
"github.com/spf13/cobra"
11
11
)
12
12
13
+
var (
14
+
startMilestoneProjectFlagstring
15
+
)
16
+
13
17
funcStartCmd() *cobra.Command {
14
18
cmd:=&cobra.Command{
15
19
Use: "start [name]",
16
20
Short: "Start a new milestone",
17
-
Long: `Start a new milestone for the current project. Time entries created after starting a milestone will be automatically tagged with it.`,
21
+
Long: `Start a new milestone for the current project, or the one specified. Time entries created after starting a milestone will be automatically tagged with it.`,
0 commit comments