hg resolve [ПАРАМЕТР]... [ФАЙЛ]...

повторить слияния или задать/посмотреть статус слияния файлов

Merges with unresolved conflicts are often the result of
non-interactive merging using the ``internal:merge`` configuration
setting, or a command-line merge tool like ``diff3``. The resolve
command is used to manage the files involved in a merge, after
:hg:`merge` has been run, and before :hg:`commit` is run (i.e. the
working directory must have two parents). See :hg:`help
merge-tools` for information on configuring merge tools.

The resolve command can be used in the following ways:

- :hg:`resolve [--re-merge] [--tool TOOL] FILE...`: attempt to re-merge
  the specified files, discarding any previous merge attempts. Re-merging
  is not performed for files already marked as resolved. Use ``--all/-a``
  to select all unresolved files. ``--tool`` can be used to specify
  the merge tool used for the given files. It overrides the HGMERGE
  environment variable and your configuration files.  Previous file
  contents are saved with a ``.orig`` suffix.

- :hg:`resolve -m [FILE]`: mark a file as having been resolved
  (e.g. after having manually fixed-up the files). The default is
  to mark all unresolved files.

- :hg:`resolve -u [FILE]...`: mark a file as unresolved. The
  default is to mark all resolved files.

- :hg:`resolve -l`: list files which had or still have conflicts.
  In the printed list, ``U`` = unresolved and ``R`` = resolved.
  You can use ``set:unresolved()`` or ``set:resolved()`` to filter
  the list. See :hg:`help filesets` for details.

.. note::

   Mercurial will not let you commit files with unresolved merge
   conflicts. You must use :hg:`resolve -m ...` before you can
   commit after a conflicting merge.

.. container:: verbose

  Template:

  The following keywords are supported in addition to the common template
  keywords and functions. See also :hg:`help templates`.

  :mergestatus: String. Character denoting merge conflicts, ``U`` or ``R``.
  :path:    String. Repository-absolute path of the file.

Returns 0 on success, 1 if any files fail a resolve attempt.


options ([+] can be repeated):

 == ==================== ===============================================================
 -a --all                работать со всеми требующими слияния файлами                   
 -l --list               показать состояния файлов, требующих слияния                   
 -m --mark               пометить файлы как корректно слитый                            
 -u --unmark             пометить файлы как требующие слияния                           
 -n --no-status          не показывать префикс состояния                                
    --re-merge           re-merge files                                                 
 -t --tool TOOL          задать инструмент слияния                                      
 -I --include ШАБЛОН [+] добавить файлы, имена которых соответствуют данным шаблонам    
 -X --exclude ШАБЛОН [+] не добавлять файлы, имена которых соответствуют данным шаблонам
 -T --template ШАБЛОН    отображать с помощью шаблона                                   
 == ==================== ===============================================================

global options ([+] can be repeated):

 == ====================== =======================================================================================================================
 -R --repository ХРАНИЛИЩЕ корневой каталог хранилища или имя файла комплекта                                                                     
    --cwd КАТАЛОГ          сменить рабочий каталог                                                                                                
 -y --noninteractive       не спрашивать, на все вопросы автоматически выбирать первый вариант                                                    
 -q --quiet                подавлять вывод                                                                                                        
 -v --verbose              включить дополнительный вывод                                                                                          
    --color ТИП            when to colorize (boolean, always, auto, never, or debug)                                                              
    --config КОНФИГ [+]    задать/переопределить параметр конфигурации (в виде 'секция.параметр=значение')                                        
    --config-file HGRC [+] load config file to set/override config options                                                                        
    --debug                включить отладочный вывод                                                                                              
    --debugger             запустить отладчик                                                                                                     
    --encoding КОДИРОВКА   установить кодировку (по умолчанию: UTF-8)                                                                             
    --encodingmode РЕЖИМ   установить режим кодировки (по умолчанию: strict)                                                                      
    --traceback            всегда печатать трассировку стека при исключении                                                                       
    --time                 время выполнения команды                                                                                               
    --profile              профилирование выполнения команды                                                                                      
    --version              напечатать информацию о версии и выйти                                                                                 
 -h --help                 показать справку и выйти                                                                                               
    --hidden               учитывать скрытые наборы изменений                                                                                     
    --pager ТИП            когда использовать прокрутку (логический. always (всегда), auto(автоматически) или never (никогда) (по умолчанию: auto)
 == ====================== =======================================================================================================================