##// END OF EJS Templates
push: allow to specify multiple destinations...
push: allow to specify multiple destinations I end up needing that on a regular basis and it turn out to be very simple to implement. See documentation and test for details. Differential Revision: https://phab.mercurial-scm.org/D10161

File last commit:

r47534:471cd86c default
r47536:066b8d8f default
Show More
next
38 lines | 1.2 KiB | text/plain | TextLexer
Martin von Zweigbergk
releasenotes: add a file in which to record release notes...
r42457 == New Features ==
Martin von Zweigbergk
branching: merge with stable
r47182
Valentin Gatien-Baron
purge: move extension into core mercurial...
r47080 * `hg purge` is now a core command using `--confirm` by default.
Martin von Zweigbergk
branching: merge with stable
r47182
Joerg Sonnenberger
branchmap: update rev-branch-cache incrementally...
r47084 * The `rev-branch-cache` is now updated incrementally whenever changesets
are added.
Martin von Zweigbergk
releasenotes: add a file in which to record release notes...
r42457
Joerg Sonnenberger
bundle: optional multithreaded compression, ATM zstd-only...
r47534 * The new options `experimental.bundlecompthreads` and
`experimental.bundlecompthreads.<engine>` can be used to instruct
the compression engines for bundle operations to use multiple threads
for compression. The default is single threaded operation. Currently
only supported for zstd.
Joerg Sonnenberger
branchmap: avoid ancestor computations in absence of non-continous branches...
r46880
Martin von Zweigbergk
copy: add experimental support for marking committed copies...
r44847 == New Experimental Features ==
Martin von Zweigbergk
revset: add a revset for parents in merge state...
r44817
Martin von Zweigbergk
diff: replace --merge option by config option...
r47246 * There's a new `diff.merge` config option to show the changes
relative to an automerge for merge changesets. This makes it
easier to detect and review manual changes performed in merge
Martin von Zweigbergk
log: respect diff.merge in -p output...
r47248 changesets. It is supported by `hg diff --change`, `hg log -p`
`hg incoming -p`, and `hg outgoing -p` so far.
Augie Fackler
relnotes: add entry for `hg diff --merge -c`...
r47183
Manuel Jacob
relnotes: add release notes for relevant changes I did since the 5.4 release...
r45764
== Bug Fixes ==
Manuel Jacob
relnotes: make spacing before new section consistent...
r45762
Martin von Zweigbergk
releasenotes: add a file in which to record release notes...
r42457 == Backwards Compatibility Changes ==
Martin von Zweigbergk
debugmergestate: make templated...
r44880
Martin von Zweigbergk
releasenotes: add a file in which to record release notes...
r42457 == Internal API Changes ==
Joerg Sonnenberger
changelog: move branchinfo to changelogrevision...
r47082 * `changelog.branchinfo` is deprecated and will be removed after 5.8.
It is superseded by `changelogrevision.branchinfo`.
Joerg Sonnenberger
relnotes: document a number of node->revision type changes...
r47373
* Callbacks for revlog.addgroup and the changelog._nodeduplicatecallback hook
now get a revision number as argument instead of a node.
* revlog.addrevision returns the revision number instead of the node.