Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1, 2.1.1, and 2.1.2

docs: clone.txt whitespace

Changeset b036e4c65b1b

Parent 724aeabd4fb9

by Johan Samyn

Changes to one file · Browse files at b036e4c65b1b Showing diff from parent 724aeabd4fb9 Diff from another changeset...

1
2
3
4
5
6
7
8
9
 
10
11
12
13
14
15
 
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
1
2
3
4
5
6
7
8
 
9
10
11
12
13
14
 
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
 Clone a repository  =======================    .. module:: clone.dialog   :synopsis: Dialog used to clone a repository    To clone a repository you have to run the clone dialog.  From the explorer context menu select :menuselection:`TortoiseHg... --> Clone a repository` -or type :command:`thg clone`. +or type :command:`thg clone`.    .. figure:: figures/clone.png   :alt: Clone dialog     Clone Dialog - +  :guilabel:`Source`   It is the path (or URL) of the repository that will be cloned. Use   the :guilabel:`Browse...` to choose a local folder.  :guilabel:`Destination`   It is the path of destination directory, a folder with the same name   of source repository will be created within this directory.    Under the :guilabel:`Options` expander you will find:    :guilabel:`Clone To Revision`   You can limit the clone up to this revision. Even the tags created   after this revision will not be imported.  :guilabel:`Do not update the new working directory`   If checked, after the clone the working directory will be empty. It   is useful when you have to clone a repository with the purpose of   central repository, or backup, where you have only, in the future,   to *push* and *pull*.  :guilabel:`Use pull protocol to copy metadata`   When the source and destination are on the same filesystem,   Mercurial tries to use hardlinks. Some filesystems, such as AFS   implement hardlink incorrectly, but do not report errors. Use this   option to avoid hardlinks.  :guilabel:`Use uncompressed transfer`   To use uncompressed transfer (fast over LAN).  :guilabel:`Include patch queue`   To also clone an MQ patch repository along with the main repository.  :guilabel:`Use proxy server`   To use the proxy server configured in :menuselection:`TortoiseHg... --> Global Settings --> Proxy`.   This is enabled only if a proxy is configured.  :guilabel:`Remote command`   Specify a Mercurial command to run on the remote side.    From command line  -----------------    The clone tool can be started from command line ::     thg clone    The syntax is ::     thg clone [SOURCE] [DEST]    where [SOURCE] and [DEST] are, the paths of source repository and destination folder.    .. vim: noet ts=4