hg pull [-u] [-f] [-r REV]... [-e CMD] [--remotecmd CMD] [SOURCE]...
затянуть изменения из указанного источника
Pull changes from a remote repository to a local one.
This finds all changes from the repository at the specified path or URL and adds them to a local repository (the current one unless -R is specified). By default, this does not update the copy of the project in the working directory.
When cloning from servers that support it, Mercurial may fetch pre-generated data. When this is done, hooks operating on incoming changesets and changegroups may fire more than once, once for each pre-generated bundle and as well as for any additional remaining data. See 'hg help -e clonebundles' for more.
Use 'hg incoming' if you want to see what would have been added by a pull at the time you issued this command. If you then decide to add those changes to the repository, you should use 'hg pull -r X' where "X" is the last changeset listed by 'hg incoming'.
If SOURCE is omitted, the 'default' path will be used. See 'hg help urls' for more information.
If multiple sources are specified, they will be pulled sequentially as if the command was run multiple time. If --update is specify and the command will stop at the first failed --update.
Specifying bookmark as "." is equivalent to specifying the active bookmark's name.
One can use the '--remote-hidden' flag to pull changesets hidden on the remote. This flag is "best effort", and will only work if the server supports the feature and is configured to allow the user to access hidden changesets. This option is experimental and backwards compatibility is not garanteed.
Returns 0 on success, 1 if an update had unresolved files.
options ([+] can be repeated):
| -u | --update | update to new branch head if new descendants were pulled |
| -f | --force | работать даже на несвязанном хранилище |
| --confirm | confirm pull before applying changes | |
| -r | --rev РЕВИЗИЯ [+] | отдалённый набор изменений, предназначенный для добавления |
| -B | --bookmark ЗАКЛАДКА [+] | закладка, которую следует затянуть |
| -b | --branch ВЕТКА [+] | конкретная ветка, которую вы хотите затянуть |
| --remote-hidden | include changesets hidden on the remote (EXPERIMENTAL) | |
| -e | --ssh КОМАНДА | используемая команда для ssh |
| --remotecmd КОМАНДА | команда Mercurial, которая будет запущена на отдалённом компьютере | |
| --insecure | не проверять сертификат сервера (игнорируя настройку web.cacerts) |
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) |