File: //usr/lib/python3/dist-packages/hgext/__pycache__/share.cpython-310.pyc
o
�]Lbi � @ s� d Z ddlmZ ddlZddlmZ ddlmZmZm Z m
Z
mZmZm
Z
mZ i Ze�e�ZdZeddd ded
�fddded
�fddded�fged�ejdd� d'dd��Zedg dejd�dd� �Zdd� Zdd� Zdd � Zd!d"� Zd#d$� Zd%d&� ZdS )(aU
share a common history between several working directories
The share extension introduces a new command :hg:`share` to create a new
working directory. This is similar to :hg:`clone`, but doesn't involve
copying or linking the storage of the repository. This allows working on
different branches or changes in parallel without the associated cost in
terms of disk space.
Note: destructive operations or extensions like :hg:`rollback` should be
used with care as they can result in confusing problems.
Automatic Pooled Storage for Clones
-----------------------------------
When this extension is active, :hg:`clone` can be configured to
automatically share/pool storage across multiple clones. This
mode effectively converts :hg:`clone` to :hg:`clone` + :hg:`share`.
The benefit of using this mode is the automatic management of
store paths and intelligent pooling of related repositories.
The following ``share.`` config options influence this feature:
``share.pool``
Filesystem path where shared repository data will be stored. When
defined, :hg:`clone` will automatically use shared repository
storage instead of creating a store inside each clone.
``share.poolnaming``
How directory names in ``share.pool`` are constructed.
"identity" means the name is derived from the first changeset in the
repository. In this mode, different remotes share storage if their
root/initial changeset is identical. In this mode, the local shared
repository is an aggregate of all encountered remote repositories.
"remote" means the name is derived from the source repository's
path or URL. In this mode, storage is only shared if the path or URL
requested in the :hg:`clone` command matches exactly to a repository
that was cloned before.
The default naming mode is "identity".
.. container:: verbose
Sharing requirements and configs of source repository with shares:
By default creating a shared repository only enables sharing a common
history and does not share requirements and configs between them. This
may lead to problems in some cases, for example when you upgrade the
storage format from one repository but does not set related configs
in the shares.
Setting `format.exp-share-safe = True` enables sharing configs and
requirements. This only applies to shares which are done after enabling
the config option.
For enabling this in existing shares, enable the config option and reshare.
For resharing existing shares, make sure your working directory is clean
and there are no untracked files, delete that share and create a new share.
� )�absolute_importN)�_)� bookmarks�commands�error�
extensions�hg� registrar�txnutil�utils ships-with-hg-core� share� Us noupdates! do not create a working directory� B� bookmarkss also share bookmarks� s relatives% point to source using a relative paths [-U] [-B] SOURCE [DEST]T)�helpcategory�norepoFc C s t j| ||| ||d� dS )a� create a new shared repository
Initialize a new repository and working directory that shares its
history (and optionally bookmarks) with another repository.
.. note::
using rollback or extensions that destroy/modify history (mq,
rebase, etc.) can cause considerable confusion with shared
clones. In particular, if two shared clones are both updated to
the same changeset, and one of them destroys that changeset
with rollback, the other clone will suddenly stop working: all
operations will fail with "abort: working directory has unknown
parent". The only known workaround is to use debugsetparents on
the broken clone to reset it to a changeset that still exists.
)�dest�updater �relativer )r �share)�ui�sourcer �noupdater r � r �-/usr/lib/python3/dist-packages/hgext/share.pyr \ s $�r s unshare)r c C s&