-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

hg clone


> Create a copy of an existing repository in a new directory.

More information.


Clone a repository to a specified directory:

hg clone {remote_repository_source} {destination_path}

Clone a repository to the head of a specific branch, ignoring later commits:

hg clone --branch {branch} {remote_repository_source}

Clone a repository with only the `.hg` directory, without checking out files:

hg clone --noupdate {remote_repository_source}

Clone a repository to a specific revision, tag or branch, keeping the entire history:

hg clone --updaterev {revision} {remote_repository_source}

Clone a repository up to a specific revision without any newer history:

hg clone --rev {revision} {remote_repository_source}


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Tue May 21 03:16:37 2024