From f304ca2af8922fee57cffda44855645c6fbe704f Mon Sep 17 00:00:00 2001 From: "Sean M. Collins" Date: Tue, 22 May 2012 16:21:42 -0400 Subject: [PATCH] Revert GitTfsRemote change from f72048b We'll have to figure out something else to fix the path separator mismatch. --- GitTfs/Core/GitTfsRemote.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GitTfs/Core/GitTfsRemote.cs b/GitTfs/Core/GitTfsRemote.cs index 7035ded7..9539d68d 100644 --- a/GitTfs/Core/GitTfsRemote.cs +++ b/GitTfs/Core/GitTfsRemote.cs @@ -146,7 +146,7 @@ namespace Sep.Git.Tfs.Core if(!tfsPath.StartsWith(TfsRepositoryPath,StringComparison.InvariantCultureIgnoreCase)) return null; tfsPath = tfsPath.Substring(TfsRepositoryPath.Length); while (tfsPath.StartsWith("/")) - tfsPath = tfsPath.Substring(1).Replace("/","\\"); + tfsPath = tfsPath.Substring(1); return tfsPath; }