GitCommands.GitCommands.StartPageantForRemote C# (CSharp) Method

StartPageantForRemote() public static method

public static StartPageantForRemote ( string remote ) : bool
remote string
return bool
        public static bool StartPageantForRemote(string remote)
        {
            var sshKeyFile = GetPuttyKeyFileForRemote(remote);
            if (string.IsNullOrEmpty(sshKeyFile))
                return false;

            StartPageantWithKey(sshKeyFile);
            return true;
        }
GitCommands