GitCommands.GitCommands.FixPath C# (CSharp) Method

FixPath() private static method

private static FixPath ( string path ) : string
path string
return string
        private static string FixPath(string path)
        {
            path = path.Trim();

            return path.StartsWith("\\\\") ? path : path.Replace('\\', '/');
        }
GitCommands