GitCommands.GitCommands.GetRemotes C# (CSharp) Method

GetRemotes() public static method

public static GetRemotes ( ) : string[]
return string[]
        public static string[] GetRemotes()
        {
            return RunCmd(Settings.GitCommand, "remote show").Split('\n');
        }
GitCommands