File tree Expand file tree Collapse file tree 4 files changed +6
-1
lines changed Expand file tree Collapse file tree 4 files changed +6
-1
lines changed Original file line number Diff line number Diff line change
1
+ # 5.3.1
2
+ - Fix: Added documentation for ` mob start --discard-uncommitted-changes ` in the ` mob help ` command
3
+
1
4
# 5.3.0
2
5
- Feature: ` mob start --discard-uncommitted-changes ` allows to discard uncommitted changes and then starting a new mob session
3
6
Original file line number Diff line number Diff line change @@ -175,6 +175,7 @@ Basic Commands:
175
175
Basic Commands(Options):
176
176
start [<minutes>] Start a <minutes> timer
177
177
[--include-uncommitted-changes|-i] Move uncommitted changes to wip branch
178
+ [--discard-uncommitted-changes|-d] Discard uncommitted changes
178
179
[--branch|-b <branch-postfix>] Set wip branch to 'mob/<base-branch>-<branch-postfix>'
179
180
[--create] Create the remote branch
180
181
[--room <room-name>] Set room name for timer.mob.sh once
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ Basic Commands:
18
18
Basic Commands with Options:
19
19
start [<minutes>] Start <minutes> minutes timer
20
20
[--include-uncommitted-changes|-i] Move uncommitted changes to wip branch
21
+ [--discard-uncommitted-changes|-d] Discard uncommitted changes
21
22
[--branch|-b <branch-postfix>] Set wip branch to 'mob/<base-branch>` + configuration .WipBranchQualifierSeparator + `<branch-postfix>'
22
23
[--create] Create the remote branch
23
24
[--join|-j] Join existing wip branch
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import (
21
21
)
22
22
23
23
const (
24
- versionNumber = "5.3.0 "
24
+ versionNumber = "5.3.1 "
25
25
minimumGitVersion = "2.13.0"
26
26
)
27
27
You can’t perform that action at this time.
0 commit comments