Skip to content

Commit ceb0595

Browse files
committed
Changed 'Back' to 'Go Back' in config setup
1 parent 0f164a7 commit ceb0595

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

GitVersionCore/Configuration/Init/SetConfig/AssemblyVersioningSchemeSetting.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ protected override string GetPrompt(Config config, string workingDirectory, IFil
3838
{
3939
return @"What assembly versioning scheme do you want to use:
4040
41-
0) Back
41+
0) Go Back
4242
1) Major.0.0.0
4343
2) Major.Minor.0.0
4444
3) Major.Minor.Patch.0 (default)

GitVersionCore/Configuration/Init/SetConfig/ConfigureBranch.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ protected override string GetPrompt(Config config, string workingDirectory, IFil
3737
{
3838
return string.Format(@"What would you like to change for '{0}':
3939
40-
0) Back
40+
0) Go Back
4141
1) Branch Pre-release tag (Current: {1})
4242
2) Branch Increment mode (per commit/after tag) (Current: {2})", name, branchConfig.Tag, branchConfig.VersioningMode);
4343
}

GitVersionCore/Configuration/Init/SetConfig/ConfigureBranches.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ protected override string GetPrompt(Config config, string workingDirectory, IFil
3636
{
3737
return @"Which branch would you like to configure:
3838
39-
0) Back
39+
0) Go Back
4040
" + string.Join("\r\n", OrderedBranches(config).Select((c, i) => string.Format("{0}) {1}", i + 1, c.Key)));
4141
}
4242

GitVersionCore/Configuration/Init/SetConfig/GlobalModeSetting.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ protected override string GetPrompt(Config config, string workingDirectory, IFil
4343
1) Follow SemVer and only increment when a release has been tagged (continuous delivery mode)
4444
2) Increment based on branch config every commit (continuous deployment mode)
4545
{1}",
46-
!isPartOfWizard ? "0) Back" : string.Empty,
46+
!isPartOfWizard ? "0) Go Back" : string.Empty,
4747
isPartOfWizard ? "3) Skip" : string.Empty);
4848
}
4949

GitVersionCore/Configuration/Init/SetConfig/SetBranchIncrementMode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ protected override string GetPrompt(Config config, string workingDirectory, IFil
3939
{
4040
return string.Format(@"What do you want the increment mode for {0} to be?
4141
42-
0) Back
42+
0) Go Back
4343
1) Follow SemVer and only increment when a release has been tagged (continuous delivery mode)
4444
2) Increment based on branch config every commit (continuous deployment mode)", name);
4545
}

GitVersionCore/Configuration/Init/SetConfig/SetBranchTag.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ protected override string GetPrompt(Config config, string workingDirectory, IFil
4242
{
4343
return @"This sets the pre-release tag which will be used for versions on this branch (beta, rc etc)
4444
45-
0) Back
45+
0) Go Back
4646
1) No tag
4747
4848
Anything else will be used as the tag";

0 commit comments

Comments
 (0)