GitCommands.GitCommands.HandleConflictSelectLocal C# (CSharp) Method

HandleConflictSelectLocal() public static method

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

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