GitCommands.GitModule.PathIsUrl C# (CSharp) Method

PathIsUrl() public static method

public static PathIsUrl ( string path ) : bool
path string
return bool
        public static bool PathIsUrl(string path)
        {
            return path.Contains(Path.DirectorySeparatorChar) || path.Contains(AppSettings.PosixPathSeparator.ToString());
        }
GitModule