GitCommands.GitCommands.HandleConflictSelectRemote C# (CSharp) Method

HandleConflictSelectRemote() public static method

public static HandleConflictSelectRemote ( string fileName ) : bool
fileName string
return bool
        public static bool HandleConflictSelectRemote(string fileName)
        {
            if (!HandleConflictsSaveSide(fileName, fileName, "3"))
                return false;

            RunCmd(Settings.GitCommand, "add -- \"" + fileName + "\"");
            return true;
        }
GitCommands