GitCommands.GitCommands.GetSsh C# (CSharp) Method

GetSsh() public static method

public static GetSsh ( ) : string
return string
        public static string GetSsh()
        {
            var ssh = Environment.GetEnvironmentVariable("GIT_SSH", EnvironmentVariableTarget.Process);

            return ssh ?? "";
        }
GitCommands