Skip to content

Commit 3e7edc4

Browse files
authored
Merge pull request #450 from remotemobprogramming/fix-help
fix documentation of mob start --discard-uncommitted-changes
2 parents 7f8721e + 0c17a2d commit 3e7edc4

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 5.3.1
2+
- Fix: Added documentation for `mob start --discard-uncommitted-changes` in the `mob help` command
3+
14
# 5.3.0
25
- Feature: `mob start --discard-uncommitted-changes` allows to discard uncommitted changes and then starting a new mob session
36

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ Basic Commands:
175175
Basic Commands(Options):
176176
start [<minutes>] Start a <minutes> timer
177177
[--include-uncommitted-changes|-i] Move uncommitted changes to wip branch
178+
[--discard-uncommitted-changes|-d] Discard uncommitted changes
178179
[--branch|-b <branch-postfix>] Set wip branch to 'mob/<base-branch>-<branch-postfix>'
179180
[--create] Create the remote branch
180181
[--room <room-name>] Set room name for timer.mob.sh once

help/help.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Basic Commands:
1818
Basic Commands with Options:
1919
start [<minutes>] Start <minutes> minutes timer
2020
[--include-uncommitted-changes|-i] Move uncommitted changes to wip branch
21+
[--discard-uncommitted-changes|-d] Discard uncommitted changes
2122
[--branch|-b <branch-postfix>] Set wip branch to 'mob/<base-branch>` + configuration.WipBranchQualifierSeparator + `<branch-postfix>'
2223
[--create] Create the remote branch
2324
[--join|-j] Join existing wip branch

mob.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
)
2222

2323
const (
24-
versionNumber = "5.3.0"
24+
versionNumber = "5.3.1"
2525
minimumGitVersion = "2.13.0"
2626
)
2727

0 commit comments

Comments
 (0)