GitCommands.GitCommands.HandleConflictSelectBase C# (CSharp) Method

HandleConflictSelectBase() public static method

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

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