Revert GitTfsRemote change from f72048b

We'll have to figure out something else to fix
the path separator mismatch.
This commit is contained in:
Sean M. Collins
2012-05-22 16:21:42 -04:00
parent 4300d136e9
commit f304ca2af8
+1 -1
View File
@@ -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;
}