GitCommands.GitCommands.UseSsh C# (CSharp) Method

UseSsh() private static method

private static UseSsh ( string arguments ) : bool
arguments string
return bool
        private static bool UseSsh(string arguments)
        {
            var x = !Plink() && GetArgumentsRequiresSsh(arguments);
            return x || arguments.Contains("plink");
        }
GitCommands