- Sep 03, 2013
-
-
Matt Mackall authored
-
Matt Mackall authored
-
- Aug 28, 2013
-
-
Katsunori FUJIWARA authored
Before this patch, tag overwriting history is not written into tag cache file ".hg/cache/tags". This may give higher priority to local tag than global one, even if the former is overwritten by the latter, because tag overwriting history is used to compare priorities of them (as "rank"). In such cases, "hg tags" invocations using tag cache file shows incorrect tag information. This patch writes tag overwriting history also into tag cache file.
-
- Aug 26, 2013
-
-
Katsunori FUJIWARA authored
Before this patch, there is no explicit description that argument is treated as the URL of the destination repository when "--outgoing" is specified. This patch adds description about "histedit --outgoing" to command help of it.
-
Katsunori FUJIWARA authored
Before this patch, there is no explicit description that histedit edits changesets between specified ancestor and the parent of the working directory: users may notice it by error message "REV is not an ancestor of working directory". This patch adds description about basic histedit function to command help of it. This patch uses term "ancestor" instead of "parent", because it seems to be more suitable, and almost all (error) messages already use it.
-
- Sep 03, 2013
-
-
Bryan O'Sullivan authored
We handled these correctly with all rev-specifying options except, somehow, -r/--rev.
-
- Aug 02, 2013
-
-
Matt Mackall authored
-
Matt Mackall authored
-
Kevin Bullock authored
This makes `hg pull --update` behave the same wrt the active bookmark as `hg pull && hg update` does as of 2096e025a728. A helper function, bookmarks.calculateupdate, is added to prevent code duplication between postincoming and update.
-
Matt Mackall authored
-
- Aug 01, 2013
-
-
Wagner Bruna authored
-
- Jul 31, 2013
-
-
Katsunori FUJIWARA authored
-
- Aug 02, 2013
-
-
Matt Mackall authored
Similar to issue4009, 2.7 will force people to abort histedits before doing interesting things. Without this fix, people with histedit sessions they wandered away from before upgrading to 2.7 could clobber their working copy for no reason.
-
- Aug 01, 2013
-
-
Matt Mackall authored
With this, all aborts will succeed in removing the state, rather than leaving the user in 'what do I do now?' limbo.
-
Matt Mackall authored
This causes us to simply discard the rebase state.
-
Matt Mackall authored
-
- Jul 26, 2013
-
-
Wojciech Lopata authored
Make push -r/-B update only these bookmarks that point to pushed revisions or their ancestors, so we can be sure that commit pointed by bookmark is present in the remote reposiory. Previously push tried to update all shared bookmarks.
-
- Jul 28, 2013
-
-
Matt Mackall authored
With the follow_symlinks option, sshfs will successfully create links while claiming it encountered an I/O error. In addition, depending on the type of link, it may subsequently be impossible to delete the link via sshfs. Our existing link to '.' will cause sshfs to think the link is a directory, and thus cause unlink to give EISDIR. Links to non-existent names or circular links will cause the created link to not even be visible. Thus, we need to create a new temporary file and link to that. We'll still get a failure, but we'll be able to remove the link.
-
Matt Mackall authored
We used to do this based on X-mailer: mentioning git, but git doesn't put X-mailer in its git-format-patch output.
-
- Jul 27, 2013
-
-
Pascal Quantin authored
-
Matt Mackall authored
-
- Jul 26, 2013
-
-
Matt Mackall authored
This skips the backup if it would be a duplicate.
-
Matt Mackall authored
-
Matt Mackall authored
-
Matt Mackall authored
-
- Jul 25, 2013
-
-
Simon Heimberg authored
".. container::" and ".. note::" are rst syntax and therefore must not be translated.
-
- Jul 26, 2013
-
-
Frank Kingswood authored
-
- Jul 25, 2013
-
-
Siddharth Agarwal authored
ninteresting indicates the number of non-zero elements in the interesting array, not the number of elements in the final list. Since elements in interesting can stand for more than one gca, limiting the number of results to ninteresting is an error. Tests for issue3984 are included.
-
Wei, Elson authored
The invariant this code tries to hold is that ninteresting is the number of non-zero elements in the interesting array. interesting[nsp] is incremented at the same time as interesting[sp] is decremented. So if interesting[nsp] was previously 0, ninteresting shouldn't be decremented.
-
Siddharth Agarwal authored
This isn't strictly necessary, but it makes the code more consistent with the Python version.
-
durin42 authored
-
durin42 authored
next() is a builtin starting in 2.6, so it's also nice to avoid shadowing the builtin.
-
Alexander Plavin authored
-
Matt Mackall authored
Got three different results on buildbot.
-
Matt Mackall authored
-
Matt Mackall authored
Turns out histedit actually intends for commits (but not other operations like update) to be possible during its operation.
-
- Jul 22, 2013
-
-
Simon Heimberg authored
with xargs, backslashes are eaten up. Convert them to slashes therefore. This is only a problem with ls (on windows). hg manifest returns slashes. The pipe char is moved before the line end for telling check-code.py that sed does not modify the output.
-
Simon Heimberg authored
-
- Jul 25, 2013
-
-
Matt Mackall authored
-
- Jul 21, 2013
-
-
Alexander Plavin authored
This fixes issue3990 for Webkit-browsers, and also older Opera versions. Rendering in firefox is not changed.
-