Kiln » TortoiseHg » TortoiseHg
Clone URL:  
sync.txt
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
Synchronize =========== .. module:: synchronize.dialog :synopsis: Dialog used to perform synchronization operations .. figure:: figures/synchronize.png :alt: Synchronize dialog Synchronize dialog TODO: describe drag & drop TODO: describe stored vs related paths TODO: describe behavior differences in and out of Workbench TODO: describe perfarce integration TODO: describe URL context menu and shortcuts The synchronize tool is used to transmit changesets between repositories or to email recipients. :guilabel:`Incoming` show changesets that would be pulled from target repository, the changes in the target repository that are not in local repository :guilabel:`Pull` pull incoming changesets from target repository :guilabel:`Outgoing` show changesets that would be pushed to target repository, the changes in the local repository that are not in target repository :guilabel:`Push` push outgoing changesets to target repository, make the local *tip* the new *tip* in the target repository :guilabel:`Email` send outgoing changesets (to target repository) as email :guilabel:`Stop` stop current operation The :guilabel:`Post Pull Operation` frame contains radio buttons for selecting the operation which is performed after a pull. This behavior is configurable via the :guilabel:`Configure` button. You can select a default behavior for your user account and override that selection on a per-repository basis. :guilabel:`None` No operations are performed after a pull. You will be allowed to view the pulled changesets in the log viewer, and you will have the option to update to the new tip if applicable. :guilabel:`Update` Automatically update to the current branch tip if, and only if, new revisions were pulled into the local repository. This could trigger a merge if the pulled changes conflict with local uncommitted changes. :guilabel:`Fetch` Equivalent to hg fetch. See the fetch extension documentation for its behavior. This feature is only available if the fetch extension has been enabled by the user. :guilabel:`Rebase` Equivalent to pull --rebase. See the rebase extension documentation for its behavior. This feature is only available if the rebase extension has been enabled by the user. :guilabel:`Automatically resolve merge conflicts where possible` If update or rebase are selected, a pull operation may result in a merge. If checked, Mercurial will try to resolve trivial merge conflicts without user interaction. If not checked, all merges will be interactive. All operations which require authentication will pop up dialog boxes to get the required information from the user. TortoiseHg uses the TortoisePlink tool (borrowed from the TortoiseSVN distribution) to handle *ssh:* connections and authentication. See the FAQ_ for help if you have trouble connecting to ssh servers. .. _FAQ: http://bitbucket.org/tortoisehg/stable/wiki/FAQ#tortoisehg-faq Under the :guilabel:`Options` fold-up panel are a number of configurables that are valid for most push/pull operations. :guilabel:`Allow push of a new branch` allow a new named branch to be pushed :guilabel:`Force pull or push` override warnings about multiple heads or unrelated repositories :guilabel:`Recurse into subdirectories` incoming or outgoing commands can recurse into subdirectories and provide a full report :guilabel:`Remote Command` provides --removecmd argument Email ----- .. figure:: figures//email.png :alt: Email dialog Email dialog The email dialog can be launched from two TortoiseHg tools. 1) The Workbench, in which case the user intends to email a selection of revisions. 2) The synchronize tool, in which case the user intends to email all outgoing changes to the current target repository. The :guilabel:`Send` button is obvious, and the :guilabel:`Configure` dialog predictably opens the TortoiseHg Settings dialog to the email tab where you can configure your SMTP settings and set default :guilabel:`To:` and :guilabel:`From:` addresses. :guilabel:`In-Reply-To:` is used to make your patches properly threaded in mailing lists. Please consult the Mercurial documentation for the differences between plain patches, Hg patches, Git patches, and bundles. Security -------- Mercurial (and TortoiseHg) support two secure protocols for exchanging data with remove servers. HTTPS (SSL) and SSH. HTTPS ~~~~~ There are two asymmetrical parts to a secure HTTPS connection. The first is authenticating yourself (the client) to the server, either via a username and passphrase or a certificate key. The second part of the secure connection is authenticating to yourself the identification of the server. Host Authentication +++++++++++++++++++ Prior to version 1.7, Mercurial ignored this half of HTTPS connection security. In version 1.7 it began warning that the server's certificate was not being verified. Starting with Mercurial version 1.7.3 (TortoiseHG 1.1.7), the binary installers begain to include a CA certificate file so that HTTPS server certificates could be verified by the standard certificate authorities. We download our certificate authority file from http://curl.haxx.se/ca/cacert.pem. Mercurial version 1.7.5 introduced the ability to validate an HTTPS server's certificate against a stored fingerprint. TortoiseHg 2.0's synchronize tool has an HTTPS security dialog that allows you to select between using a host fingerprint or using the CA certificates. In theory, a host fingerprint is more secure than the CA certificates if you do not necessarily trust all of the signing authorities listed in the cacert.pem file. However you must be sure that the fingerprint you store is the correct fingerprint for the server to which you believe you are communicating. TortoiseHg 2.0 also allows you to select an insecure connection for a given host. This disables validation of the host's certificate but still uses an encrypted data stream (which was essentially the behavior of Mercurial pre-1.7 except for the warning messages). User Authentication +++++++++++++++++++ There are several mechanisms available for authenticating yourself to an HTTPS server. The simplest is to allow Mercurial to prompt you for the username and passphrase. However this quickly grows old as the two prompts are always made separately and each push operation can require multiple connections to be established. The next option is to encode the username in the URL so that Mercurial only prompts for a passphrase. This cuts the number of prompts in half, but is still annoying. If you do not wish to be prompted for the passphrase, it must be stored somewhere. Your choices, in increasing security, are: 1) encode the clear-text passphrase in each HTTPS URL in your repository configuration files 2) store the clear-text passphrase in your user configuration file 3) use the mercurial_keyring extension to store the passphrase cryptographically Until recently, TortoiseHg only supported the first option in the graphical interface even though the second and third options were supported internally. TortoiseHg 2.0, we only support the latter two options in the graphical interface, and we do not allow the user configure the first option anymore. By default we strip the username and password off of URLs when they are saved. To migrate from the first option to the later options, select an HTTPS URL in the sync tool, open the security dialog and enter a username and passphrase for the host if none are configured, and save. Next save the URL itself and allow the save dialog to strip the user authentication data from the URL. .. note:: If the mercurial_keyring extension is enabled, the security dialog will not allow you to enter a passphrase since you do not want to store the passphrase in clear text in your configuration file if you are going to later store it cryptographically. Options 2 and 3 use the [auth] section of your user configuration file to configure a single username and passphrase (or certificate key files) to authenticate to a given HTTPS hostname. The [auth] section supports many more configurations than this, see the man page for details. Once the mercurial_keyring extension has been enabled (and all applications are restarted), you can remove the HTTPS passphrases from all of your configuration files. Mercurial will prompt for the passphrase once, then store it cryptographically using the best back-end it can find for your platform. The mercurial_keyring extension requires the [auth] section to be configured for the host to which you are connecting, to provide the username. If your URL has an encoded username or passphrase, the [auth] section is ignored. SSH ~~~ SSH is a symmetrical peer-to-peer secure tunnel. SSH clients and servers have their own key management systems, so Mercurial does not get involved with password prompts when SSH is used. This is problematic on Windows and thus TortoiseHg bundles the TortosePlink SSH client with its Windows installers. TortoisePlink is a port of the Plink SSH client that uses dialog prompts for host-key authorizations and passphrase prompts. TortoisePlink (developed by the TortoiseSVN project) can use the other SSH tools that are part of the Plink toolchain, including the Pageant key agent. It is a known issue that TortoisePlink does not use compression in many scenarios, and thus is up to four times slower than openssh and other clients. TortoiseHg recommends the use of HTTPS for Windows clients. From command line ----------------- The synchronize tool can be started from command line :: thg sync aliases: synchronize Synchronize with other repositories use "thg -v help sync" to show global options The syntax is simple, no options or parameters are needed, except the global options. .. vim: noet ts=4