Mercurial
Mercurial
>
hg
/ graph
summary
|
shortlog
|
changelog
| graph |
tags
|
bookmarks
|
branches
|
files
|
zip
|
gz
|
bz2
|
help
less
more
|
(0)
-30000
-10000
-3000
-1000
-240
+240
+1000
+3000
tip
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
The revision graph only works with JavaScript-enabled browsers.
keepalive: Do not append _rbuf if _raw_readinto exists (issue6356)
stable
2020-08-02, by Cédric Krier
store: refactor space delimited list to proper data structure
2020-08-08, by Pulkit Goyal
makefile: stop setting unused HGEXTDIR variable during osx build
2020-08-07, by Martin von Zweigbergk
merge: drop commitinfo argument to applyupdates (API)
2020-08-06, by Pulkit Goyal
merge: remove emptyactions() and use collections.defaultdict(list) instead
2020-08-06, by Pulkit Goyal
merge: pass mergeresult obj in _forgetremoved() (API)
2020-08-05, by Pulkit Goyal
mergeresult: introduce filemap() which yields filename based mapping
2020-08-05, by Pulkit Goyal
mergeresult: add `files()` and use it
2020-08-05, by Pulkit Goyal
mergeresult: introduce getfile() and use it where required
2020-08-05, by Pulkit Goyal
merge: use ACTION_* constants instead of values in _filternarrowactions()
2020-08-05, by Pulkit Goyal
merge: rework iteration over mergeresult object in checkpathconflicts()
2020-08-05, by Pulkit Goyal
applyupdates: simplfy calculation of number of updated files
2020-08-05, by Pulkit Goyal
mergeresult: yield from getactions() instead of buidling a list and returning
2020-08-03, by Pulkit Goyal
sparse: replace merge action values with mergestate.ACTION_* constants
2020-08-03, by Pulkit Goyal
mergeresult: implement a len() function and use it
2020-08-03, by Pulkit Goyal
merge: replace use of actions dict with mergeresult object
2020-08-03, by Pulkit Goyal
mergeresult: add sort argument to getactions() method
2020-08-03, by Pulkit Goyal
merge: pass mergeresult obj in merge._prefetchfiles()
2020-08-03, by Pulkit Goyal
merge: pass mergeresult obj instead of actions in applyupdates() (API)
2020-08-03, by Pulkit Goyal
merge: pass mergeresult obj instead of actions in _checkcollision() (API)
2020-08-03, by Pulkit Goyal
commitctx: directly update the touched and added set of files
2020-07-28, by Pierre-Yves David
commitctx: directly updated the set of removed files
2020-07-28, by Pierre-Yves David
commitctx: create the `ChangingFiles` object sooner
2020-07-29, by Pierre-Yves David
commitctx: move ChangingFiles creation directly inside `_process_files`
2020-07-25, by Pierre-Yves David
commitctx: create the ChangingFiles object directly in the various case
2020-07-25, by Pierre-Yves David
commitctx: no longer make the storage and added/removed file optional
2020-07-25, by Pierre-Yves David
commitctx: directly gather p1 and p2 copies in `files`
2020-07-25, by Pierre-Yves David
commitctx: extract sidedata encoding inside its own function
2020-07-25, by Pierre-Yves David
commitctx: directly pass a ChangingFiles object to changelog.add
2020-07-25, by Pierre-Yves David
commitctx: return a richer object from _prepare_files
2020-07-25, by Pierre-Yves David
templater: teach template loader to use open_template() function
2020-08-06, by Martin von Zweigbergk
templater: restructure open_template() a little to prepare for relative paths
2020-08-06, by Martin von Zweigbergk
templater: add exception-raising version of open_template()
2020-08-06, by Martin von Zweigbergk
templater: replace Py3-only exception types by super-types available in Py2
2020-08-05, by Martin von Zweigbergk
hgweb: enable reading styles from resources in frozen binaries
2020-08-05, by Martin von Zweigbergk
hgweb: rely on open_template()'s fallback to using templatedir()
2020-08-05, by Martin von Zweigbergk
hgweb: open mapfile using templater.open_template()
2020-08-05, by Martin von Zweigbergk
hgweb: simplify a constant-length list by converting to literal tuple
2020-08-05, by Martin von Zweigbergk
hgweb: remove some accesses to private member uimod._unset
2020-08-05, by Martin von Zweigbergk
templater: try to read %include in mapfiles from resources
2020-07-30, by Martin von Zweigbergk
templater: unroll loop over mapfile directories
2020-07-30, by Martin von Zweigbergk
templater: make open_template() read from resources if in frozen binary
2020-08-04, by Martin von Zweigbergk
templater: pass opened file-like object to templatespec
2020-08-04, by Martin von Zweigbergk
templater: replace templatepath() with function that also opens the file
2020-08-04, by Martin von Zweigbergk
templater: start passing resource to read from into _readmapfile()
2020-07-30, by Martin von Zweigbergk
templater: move stylemap() to hgweb_mod, since that's its only user
2020-08-04, by Martin von Zweigbergk
hgweb: simplify staticfile() now that we always pass it a single directory
2020-08-03, by Martin von Zweigbergk
packaging: include templates with their package as key in package_data
2020-07-31, by Martin von Zweigbergk
packaging: mark mercurial.templates and subdirs as packages
2020-07-31, by Martin von Zweigbergk
templates: add __init__.py files to templates/ dirs
2019-12-12, by Martin von Zweigbergk
merge with stable
2020-08-05, by Augie Fackler
localrepo: abort creating a shared repo if the source does not have store
2020-07-21, by Pulkit Goyal
localrepo: only use 'bookmarksinstore' requirement if we have 'store'
2020-07-21, by Pulkit Goyal
mergeresult: make actionmapping a dict of dict instead of dict of lists
2020-07-25, by Pulkit Goyal
largefiles: introduce a constant for 'lfmr' action
2020-07-25, by Pulkit Goyal
largefiles: override merge.emptyactions() to include `lfmr`
2020-07-25, by Pulkit Goyal
merge: unify logic of couple of if-else's in manifestmerge()
2020-07-25, by Pulkit Goyal
sparse: add comment for an if condition which I tried to refactor
2020-07-24, by Pulkit Goyal
mergeactions: use action constants instead of string values
2020-07-24, by Pulkit Goyal
merge: use the new action based mapping introduced in mergeresult obj
2020-08-02, by Pulkit Goyal
mergeresult: introduce action -> (filename, data, msg) mapping and related API
2020-07-24, by Pulkit Goyal
mergeresult: rename _actions to _filemapping
2020-08-02, by Pulkit Goyal
sparse: pass mergeresult obj in sparse.filterupdatesactions() (API)
2020-07-24, by Pulkit Goyal
merge: filter actions before calling _resolvetrivial()
2020-07-24, by Pulkit Goyal
merge: introduce mergeresult.updateactions() and use it
2020-07-24, by Pulkit Goyal
merge: pass mergeresult instead of actions in _checkunknownfiles() (API)
2020-07-24, by Pulkit Goyal
merge: pass mergeresult obj instead of actions dict in _resolvetrivial()
2020-07-24, by Pulkit Goyal
merge: pass mergeresult obj instead of actions in _filternarrowactions()
2020-07-24, by Pulkit Goyal
merge: pass mergeresult in checkpassconflicts() instead of actions (API)
2020-07-24, by Pulkit Goyal
merge: add removefile() to mergeresult object
2020-07-24, by Pulkit Goyal
merge: introduce mergeresult.addfile() and use it
2020-07-24, by Pulkit Goyal
merge: make mergeresult constructor initialize empty object
2020-07-24, by Pulkit Goyal
merge: improve documentation of fbid dict used for merge bid
2020-07-24, by Pulkit Goyal
merge: move conversion of file-key dict to action-key dict in mergeresult
2020-07-24, by Pulkit Goyal
merge: introduce hasconflicts() on mergeresult object
2020-08-02, by Pulkit Goyal
merge: remove no longer required ACTION_GET_OTHER_AND_STORE
2020-07-14, by Pulkit Goyal
merge: pass commitinfo to applyupdates() and get it stored in mergestate
2020-07-14, by Pulkit Goyal
merge: introduce 'commitinfo' in mergeresult
2020-07-14, by Pulkit Goyal
merge: return a mergeresult obj from manifestmerge(), calculateupdates() (API)
2020-07-23, by Pulkit Goyal
Added signature for changeset 7fc3c5fbc65f
stable
2020-08-03, by Pulkit Goyal
Added tag 5.5 for changeset 7fc3c5fbc65f
stable
2020-08-03, by Pulkit Goyal
mergestate: fix BC breakage introduced because of removal of a merge record
stable
5.5
2020-08-01, by Pulkit Goyal
packaging: delete unnecessary updating of `dirs` list
2020-07-30, by Martin von Zweigbergk
packaging: make "mercurial.defaultrc" a key in package_data
2020-08-02, by Martin von Zweigbergk
templatespec: use new factory functions in hooklib
2020-07-30, by Martin von Zweigbergk
templatespec: use new factory functions in logcmdutil
2020-07-20, by Martin von Zweigbergk
templatespec: move check for non-unicode to lower-level function
2020-07-20, by Martin von Zweigbergk
templatespec: logcmdutil.templatespec() gets either template or mapfile
2020-07-20, by Martin von Zweigbergk
templatespec: create a factory function for each type there is
2020-07-16, by Martin von Zweigbergk
templater: stop accepting a single style to stylemap()
2020-07-29, by Martin von Zweigbergk
formatter: inline a variable assigned from `templater.templater.frommapfile`
2020-07-23, by Martin von Zweigbergk
templater: don't normalize path separators to '/' when interacting with OS
2020-07-22, by Martin von Zweigbergk
formatter: remove now-unnecessary check for file-ness
2020-07-23, by Martin von Zweigbergk
templater: make templatepath() not return directory paths
2020-07-23, by Martin von Zweigbergk
tests: show unusual error message for `hg log --style coal`
2020-07-23, by Martin von Zweigbergk
config: remove now-unused `abs` argument from `include` callback
2020-07-22, by Martin von Zweigbergk
config: re-calculate absolute %include path in `include` callback
2020-07-22, by Martin von Zweigbergk
subrepoutil: use relative path for looking up config `%include`s
2020-07-22, by Martin von Zweigbergk
config: remove now-unused support for "includepaths"
2020-07-22, by Martin von Zweigbergk
dispatch: adjust ui.flush() timing to stabilize test-blackbox.t
stable
2020-07-25, by Yuya Nishihara
clonebundles: document REQUIREDRAM key
stable
2020-07-26, by Gregory Szorc
commitctx: gather more code dealing with copy-in-extra
2020-07-25, by Pierre-Yves David
commitctx: rename files to touched in a couple of place
2020-07-25, by Pierre-Yves David
commitctx: extract copy information encoding into extra into commit.py
2020-07-25, by Pierre-Yves David
commitctx: create the new extra dict on its own line
2020-07-25, by Pierre-Yves David
commitctx: explicitly pass `manifest` to _commit_manifest
2020-07-29, by Pierre-Yves David
phabricator: unconditionally pop `test_vcr` to fix debugcallconduit
2020-07-30, by Ian Moody
phabricator: demonstrate debugcallconduit being broken without --test-vcr
2020-07-30, by Ian Moody
cleanup: fix bad formatting of state.py from D8811
2020-07-28, by Martin von Zweigbergk
dirstate: restore original estimation and update comment
2020-07-30, by Joerg Sonnenberger
merge stable in default
2020-07-31, by Pulkit Goyal
dirstate: revert change to Rust binding
2020-07-30, by Joerg Sonnenberger
relnotes: copy "next" to "5.5" and clear "next"
stable
2020-07-28, by Martin von Zweigbergk
commitctx: extract all the file preparation logic in a new function
2020-07-23, by Pierre-Yves David
commitctx: gather more preparation code within the lock context
2020-07-23, by Pierre-Yves David
commitctx: move a special case about files earlier
2020-07-23, by Pierre-Yves David
commitctx: extract all the manual logic to process the files
2020-07-23, by Pierre-Yves David
commitctx: treat `filesadded` more like `filesremoved`
2020-07-23, by Pierre-Yves David
commitctx: move `writechangesetcopy` business at the end a code section
2020-07-23, by Pierre-Yves David
commitctx: move copy meta config reading in a dedicated function
2020-07-23, by Pierre-Yves David
commitctx: no longer use the `writecopiesto` variable in the function
2020-07-23, by Pierre-Yves David
commitctx: extract the function that commit a new manifest
2020-07-23, by Pierre-Yves David
commitctx: stop using weakref proxy for transaction
2020-07-24, by Pierre-Yves David
rebase: fix regression in file change detection introduced by 0ecb3b11fcad
stable
2020-07-28, by Manuel Jacob
context: re-add `overlayworkingctx._compact()` removed in 6a5dcd754842
stable
2020-07-28, by Manuel Jacob
push: test for checks preventing publishing obsolete changeset
stable
2020-07-23, by Pierre-Yves David
push: test for checks preventing publishing obsolete changeset
stable
2020-07-23, by Pierre-Yves David
push: another test for checks preventing pushing orphaness to a server
stable
2020-07-23, by Pierre-Yves David
push: test the checks preventing pushing orphaness to a server
stable
2020-07-23, by Pierre-Yves David
commitctx: document the None return for "touched" value
2020-07-22, by Pierre-Yves David
tests: add tests trying to use dir as style, as %include, and as __base__
2020-07-23, by Martin von Zweigbergk
tests: fix mistaken copy&paste from commit 4489e9a22763
2020-07-23, by Martin von Zweigbergk
manifest: kill one more instance of the old merge hash hack
2020-07-06, by Joerg Sonnenberger
dirstate: isolate node len dependency for the pure version
2020-07-25, by Joerg Sonnenberger
fix: update documentation to reflect preference for --source over --rev
2020-07-24, by Martin von Zweigbergk
tests: make check-py3-compat.py actually load the specified files correctly
2020-07-24, by Kyle Lippincott
tests: virtualenv is only used on py2, rename and conditionalize
2020-07-24, by Kyle Lippincott
morestatus: mention --stop even if not using --verbose
2020-07-23, by Kyle Lippincott
exchange: backout changeset c26335fa4225
stable
2020-07-23, by Pierre-Yves David
templater: handle None returned from templatedir()
2020-07-24, by Martin von Zweigbergk
tests: glob 'mercurial.error' in test-phases.t
stable
2020-07-24, by Pulkit Goyal
infinitepush: remove unused import to tempfile
stable
2020-07-23, by Pierre-Yves David
templater: do search for include of unqualified builtin outside of config code
2020-07-22, by Martin von Zweigbergk
templater: switch to lower-level config.parse() in _readmapfile()
2020-07-21, by Martin von Zweigbergk
config: pass both relative and absolute paths to `include` callback
2020-07-21, by Martin von Zweigbergk
tests: add test for bad template %include and __base__
2020-07-22, by Martin von Zweigbergk
tests: add test for unqualified include of a built-in template map
2020-07-21, by Martin von Zweigbergk
merge with stable
2020-07-22, by Augie Fackler
commitctx: extract _filecommit too
2020-07-07, by Pierre-Yves David
commitctx: extract the function in a dedicated module
2020-07-06, by Pierre-Yves David
commitctx: document a fast path in _filecommit
2020-07-06, by Pierre-Yves David
hgweb: simplify now that we always have a single path
2020-07-21, by Martin von Zweigbergk
templater: simplify stylemap() now that templatedir() returns a single path
2020-07-21, by Martin von Zweigbergk
templater: make templatepaths() return a single path, or None
2020-07-21, by Martin von Zweigbergk
templater: simplify templatepaths() to avoid iterating a singleton list
2020-07-21, by Martin von Zweigbergk
commitctx: move a tiny else clause above the very long one
2020-07-06, by Pierre-Yves David
commitctx: consider removed as touched
2020-07-06, by Pierre-Yves David
commitctx: rename "changed" to touched
2020-07-06, by Pierre-Yves David
commitctx: more filesremoved assignment closer to removed computation
2020-07-07, by Pierre-Yves David
commitctx: compute files added from _filecommit returns
2020-07-06, by Pierre-Yves David
commitctx: return "touched" status from _filecommit
2020-07-06, by Pierre-Yves David
relnotes: add release notes for relevant changes I did since the 5.4 release
stable
2020-07-21, by Manuel Jacob
relnotes: fix indentation
stable
2020-07-20, by Manuel Jacob
relnotes: make spacing before new section consistent
stable
2020-07-20, by Manuel Jacob
tests: make one of 'worker process exited' line option in test-chg.t
stable
2020-07-22, by Pulkit Goyal
infinitepush: fix `{get,put}_args` formatting on Python 3
stable
2020-04-22, by Connor Sheehan
infinitepush: replace `NamedTemporaryFile` with `pycompat.namedtempfile`
stable
2020-04-22, by Connor Sheehan
chgserver: discard buffered output before restoring fds (issue6207)
stable
2020-07-20, by Yuya Nishihara
hghave: fix possible int('') in has_clang_format()
stable
2020-07-21, by Yuya Nishihara
Added signature for changeset 28163c5de797
stable
2020-07-20, by Pulkit Goyal
Added tag 5.5rc0 for changeset 28163c5de797
stable
2020-07-20, by Pulkit Goyal
merge default into stable for 5.5rc0
stable
5.5rc0
2020-07-20, by Pulkit Goyal
phases: move short-lived PyObject pointers to local scope
2020-07-18, by Yuya Nishihara
phases: rename variable used for owned dict of phasesets
2020-07-18, by Yuya Nishihara
phases: leverage Py_BuildValue() to build PyInt and steal PyObject
2020-07-18, by Yuya Nishihara
phases: make sure an exception should be set on error return
2020-07-18, by Yuya Nishihara
phases: fix clang-format error
2020-07-18, by Yuya Nishihara
phases: fix error return with no exception from computephases()
2020-07-18, by Yuya Nishihara
osutil: fix excessive decref on tuple creation failure in listdir()
2020-07-19, by Yuya Nishihara
revlog: fix excessive decref on tuple creation failure in parse_index2()
2020-07-19, by Yuya Nishihara
tests: correctly match clang-format version >= 10
2020-07-20, by Manuel Jacob
state: support validated declaration of nested unfinished ops
2020-07-14, by Daniel Ploch
absorb: improve message for the case when changeset became empty
2020-07-17, by Manuel Jacob
relnotes: extend
2020-07-18, by Joerg Sonnenberger
merge: document return values of manifestmerge() and calculateupdates()
2020-07-14, by Pulkit Goyal
merge: refactor code to advise fsmonitor in separate function
2020-07-09, by Pulkit Goyal
mergestate: document what mergestate._results is for
2020-07-09, by Pulkit Goyal
mergestate: rename a helpless variable name to bit helpful one
2020-07-09, by Pulkit Goyal
mergestate: remove unnecessary recordactions() from mergestate class
2020-07-09, by Pulkit Goyal
mergestate: document mergestate records in an organized way
2020-07-09, by Pulkit Goyal
mergestate: remove unused unsupported related mergestate records
2020-07-09, by Pulkit Goyal
mergestate: add comments about couple of record types and minor reorder
2020-07-09, by Pulkit Goyal
mergestate: remove unrequired RECORD_RESOLVED_OTHER record
2020-07-09, by Pulkit Goyal
mergestate: rename addpath() -> addpathonflict() to prevent confusion
2020-07-09, by Pulkit Goyal
windows: don’t set `softspace` attribute in `winstdout`
2020-07-18, by Manuel Jacob
windows: handle file-like objects without isatty() method
2020-07-17, by Manuel Jacob
exchange: check actually missing revs for obsolete / unstable revs (issue6372)
2020-07-17, by Manuel Jacob
tests: test that push doesn’t complain about unstable changesets if no changes
2020-07-17, by Manuel Jacob
diff: move no-eol text constant to a common location
2020-07-17, by Rodrigo Damazio Bovendorp
revert: fix interactive reverting of end-of-file newline changes
2020-07-17, by Rodrigo Damazio Bovendorp
phabricator: clarify the multiple heads/roots error message for phabsend
2020-07-16, by Matt Harbison
error: normalize "unresolved conflicts" error messages with a custom class
2020-07-14, by Daniel Ploch
error: unify the error message formats for 'rebase' and 'unshelve'
2020-07-13, by Daniel Ploch
debugcommands: create new debugantivirusrunning command
2020-04-01, by Augie Fackler
windows: always work around EINVAL in case of broken pipe for stdout / stderr
2020-07-17, by Manuel Jacob
tests: make pipes / PTYs non-inheritable in test-stdio.py
2020-07-17, by Manuel Jacob
util: enhance `nullcontextmanager` to be able to return __enter__ result
2020-07-16, by Manuel Jacob
windows: augment docstring of `winstdout` class
2020-07-17, by Manuel Jacob
discovery: change users of `outgoing.missingheads` to `outgoing.ancestorsof`
2020-07-17, by Manuel Jacob
discovery: fix docstring of `outgoing` class
2020-07-15, by Manuel Jacob
discovery: weaken claim about returned common heads if ancestorsof are given
2020-07-15, by Manuel Jacob
cext: remove unused variables
2020-07-16, by Joerg Sonnenberger
phabupdate: allow resigning from revisions
2020-07-15, by Matt Harbison
phabupdate: allow revisions to be commandeered
2020-07-15, by Matt Harbison
phabupdate: allow revisions to be reopened
2020-07-15, by Matt Harbison
phabupdate: allow revisions to be marked "closed"
2020-07-15, by Matt Harbison
phabupdate: allows revisions to be marked "request-review"
2020-07-15, by Matt Harbison
phabupdate: allow revisions to be marked with "plan changes"
2020-07-15, by Matt Harbison
status: match category text in the option description
2020-07-16, by Joerg Sonnenberger
purge: classify as a "working directory management" command in help
2020-07-15, by Martin von Zweigbergk
extensions: make `hg help extensions` list disabled extensions with PyOxidizer
2020-07-15, by Martin von Zweigbergk
phases: sparsify phaseroots and phasesets
2020-07-08, by Joerg Sonnenberger
extdiff: add some comments in diffrevs()
2020-07-07, by Pulkit Goyal
extdiff: add comments and minor variable renames diffpatch()
2020-07-07, by Pulkit Goyal
extdiff: remove unrequired do3way argument to diffpatch()
2020-07-07, by Pulkit Goyal
extdiff: refactor logic to diff revs of versions of files
2020-07-07, by Pulkit Goyal
extdiff: refactor logic which does diff of patches
2020-07-07, by Pulkit Goyal
absorb: make it explicit if empty changeset was created
2020-06-01, by Manuel Jacob
absorb: consider rewrite.empty-successor configuration
2020-06-01, by Manuel Jacob
rebase: consider rewrite.empty-successor configuration
2020-06-01, by Manuel Jacob
rewriteutil: add utility to check whether empty successors should be skipped
2020-07-12, by Manuel Jacob
config: add option to control creation of empty successors during rewrite
2020-07-11, by Manuel Jacob
commands: use any() instead of `if a or b or c`
2019-08-31, by Pierre-Yves David
manifest: use the same logic for handling flags in _parse as elsewhere
2020-07-06, by Joerg Sonnenberger
manifest: tigher manifest parsing and flag use
2020-07-06, by Joerg Sonnenberger
phases: sparsify phase lists
2020-07-08, by Joerg Sonnenberger
phases: updatephases should not skip internal phase
2020-07-07, by Joerg Sonnenberger
repoview: use the phasecache directly to determine mutable revisions
2020-06-28, by Joerg Sonnenberger
phases: provide a test and accessor for non-public phase roots
2020-07-07, by Joerg Sonnenberger
hg-core: define a `dirstate_status` `Operation`
2020-06-24, by Raphaël Gomès
less
more
|
(0)
-30000
-10000
-3000
-1000
-240
+240
+1000
+3000
tip