hg update [-C|-c|-m] [-d DATE] [[-r] REV]

псевдонимы: up, checkout, co

обновить рабочий каталог (или переключить ревизию)

Update the repository's working directory to the specified changeset. If no changeset is specified, update to the tip of the current named branch and move the active bookmark (see 'hg help bookmarks').

Update делает заданный набор изменений родительской ревизией рабочего набор изменений (см. 'hg help parents').

If the changeset is not a descendant or ancestor of the working directory's parent and there are uncommitted changes, the update is aborted. With the -c/--check option, the working directory is checked for uncommitted changes; if none are found, the working directory is updated to the specified changeset.

The -C/--clean, -c/--check, and -m/--merge options control what happens if the working directory contains uncommitted changes. At most of one of them can be specified.

  1. If no option is specified, and if the requested changeset is an ancestor or descendant of the working directory's parent, the uncommitted changes are merged into the requested changeset and the merged result is left uncommitted. If the requested changeset is not an ancestor or descendant (that is, it is on another branch), the update is aborted and the uncommitted changes are preserved.
  2. With the -m/--merge option, the update is allowed even if the requested changeset is not an ancestor or descendant of the working directory's parent.
  3. With the -c/--check option, the update is aborted and the uncommitted changes are preserved.
  4. With the -C/--clean option, uncommitted changes are discarded and the working directory is updated to the requested changeset.

To cancel an uncommitted merge (and lose your changes), use 'hg merge --abort'.

Используйте ревизию с именем null чтобы удалить рабочий каталог (как 'hg clone -U').

Если вы хотите просто вернуть один файл до более старой ревизии, используйте 'hg revert [-r РЕВИЗИЯ] ИМЯ'.

Список возможных форматов для --d/--dates см. 'hg help dates'

При успехе возвращает 0, 1 если есть неразрешенные конфликты.

options:

-C --clean затереть незафиксированные изменения (без создания резервной копии)
-c --check require clean working directory
-m --merge merge uncommitted changes
-d --date ДАТА максимальная ревизия не позднее ДАТЫ
-r --rev РЕВИЗИЯ ревизия
-t --tool TOOL задать инструмент слияния

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 КОНФИГ [+] задать/переопределить параметр конфигурации (в виде 'секция.параметр=значение')
--debug включить отладочный вывод
--debugger запустить отладчик
--encoding КОДИРОВКА установить кодировку (по умолчанию: UTF-8)
--encodingmode РЕЖИМ установить режим кодировки (по умолчанию: strict)
--traceback всегда печатать трассировку стека при исключении
--time время выполнения команды
--profile профилирование выполнения команды
--version напечатать информацию о версии и выйти
-h --help показать справку и выйти
--hidden учитывать скрытые наборы изменений
--pager ТИП когда использовать прокрутку (логический. always (всегда), auto(автоматически) или never (никогда) (по умолчанию: auto)