10000 Added /exec and /proj arguments by JakeGinnivan · Pull Request #112 · GitTools/GitVersion · GitHub
[go: up one dir, main page]

Skip to content

Added /exec and /proj arguments #112

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 28, 2014
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated readme to include missing switches
  • Loading branch information
Jake Ginnivan committed Mar 26, 2014
commit b34da34770da6e682f6870fd15601b7ce970a7f8
2 changes: 1 addition & 1 deletion GitVersion/ArgumentParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static Arguments ParseArguments(List<string> commandLineArguments)
arguments.LogFilePath = value;
continue;
}

if (IsSwitch("url", name))
{
arguments.TargetUrl = value;
Expand Down
2 changes: 1 addition & 1 deletion GitVersion/HelpWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public static void Write()
var message =
@"Use convention to derive a SemVer product version from a GitFlow or GitHub based repository.

GitVersion [path] [/l logFilePath] [/exec executable] [/execargs args]
GitVersion [path] [/l logFilePath]

path The directory containing .git. If not defined current directory is used.
/url Url to remote git repository.
Expand Down
0