From f20a9da86186bcda8ebc82d6d2f363c19db8ff63 Mon Sep 17 00:00:00 2001 From: Philippe Miossec Date: Thu, 6 Jun 2013 19:56:33 +0200 Subject: [PATCH] rename 'bare' option of fetch to not conflict from the one of clone --- GitTfs/Commands/Fetch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GitTfs/Commands/Fetch.cs b/GitTfs/Commands/Fetch.cs index 2823f194..d1567c7f 100644 --- a/GitTfs/Commands/Fetch.cs +++ b/GitTfs/Commands/Fetch.cs @@ -53,7 +53,7 @@ namespace Sep.Git.Tfs.Commands v => AuthorsFilePath = v }, { "l|with-labels|fetch-labels", "Fetch the labels also when fetching TFS changesets", v => FetchLabels = v != null }, - { "b|bare=", "The name of the branch on which the fetch will be done for a bare repository", + { "b|bare-branch=", "The name of the branch on which the fetch will be done for a bare repository", v => BareBranch = v }, { "force", "Force fetch of tfs changesets when there is ahead commits (ahead commits will be lost!)", v => ForceFetchBare = v != null },