From b60431c0f386dbc42c7ed3fa560ca05f547a75e8 Mon Sep 17 00:00:00 2001 From: Philippe Miossec Date: Wed, 2 Oct 2013 22:04:07 +0200 Subject: [PATCH] don't display 'obsolete message' when initializing branch when cloning --- GitTfs/Commands/Clone.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/GitTfs/Commands/Clone.cs b/GitTfs/Commands/Clone.cs index 57572a37..9723b11f 100644 --- a/GitTfs/Commands/Clone.cs +++ b/GitTfs/Commands/Clone.cs @@ -29,6 +29,8 @@ namespace Sep.Git.Tfs.Commands this.init = init; this.globals = globals; this.initBranch = initBranch; + //[Temporary] Remove in the next version! + initBranch.DontDisplayObsoleteMessage = true; this.stdout = stdout; }