Mercurial
Mercurial
>
hg
/ graph
summary
|
shortlog
|
changelog
| graph |
tags
|
bookmarks
|
branches
|
files
|
zip
|
gz
|
bz2
|
help
less
more
|
(0)
-10000
-3000
-1000
-240
+240
+1000
+3000
+10000
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.
mq: use `last` instead of direct indexing
2014-10-07, by Pierre-Yves David
repair: use `first` instead of direct indexing
2014-10-07, by Pierre-Yves David
rangeset: use `first` and `last` instead of direct indexing
2014-10-06, by Pierre-Yves David
revpair: use `first` and `last` instead of direct indexing
2014-10-06, by Pierre-Yves David
revsingle: use `last` instead of direct indexing
2014-10-06, by Pierre-Yves David
revset-limit: use boolean testing instead of `len(revs) < 1`
2014-10-06, by Pierre-Yves David
filteredset: implement `first` and `last`
2014-10-07, by Pierre-Yves David
baseset: implement `first` and `last` methods
2014-10-06, by Pierre-Yves David
generatorset: implement first and last methods
2014-10-06, by Pierre-Yves David
addset: implement first and last methods
2014-10-06, by Pierre-Yves David
spanset: implement `first` and `last` methods
2014-10-06, by Pierre-Yves David
smartset: add first and last methods
2014-10-06, by Pierre-Yves David
getgraphlogrevs: remove user of baseset.append
2014-10-07, by Pierre-Yves David
getlogrevs: remove user of baseset.append
2014-10-07, by Pierre-Yves David
revset-last: remove user of baseset.append
2014-10-08, by Pierre-Yves David
revset-limit: remove user of baseset.append
2014-10-06, by Pierre-Yves David
mq: use `revs.sort()` to ensure the set is ascending
2014-10-07, by Pierre-Yves David
baseset: use default value instead of [] when possible
2014-10-06, by Pierre-Yves David
generatorset: implement isascending and isdescending
2014-10-04, by Pierre-Yves David
generatorset: explicitly track iteration order
2014-10-03, by Pierre-Yves David
addset: drop caching through generatorset
2014-10-03, by Pierre-Yves David
generatorset: get list-based fast iterations after the generator is consumed
2014-10-03, by Pierre-Yves David
generatorset: move iteration code into _iterator
2014-10-03, by Pierre-Yves David
generatorset: stop using a base as the _genlist
2014-10-03, by Pierre-Yves David
generatorset: drop the leading underscore in the class name
2014-10-03, by Pierre-Yves David
generatorset: update the docstring now that it is a smartset
2014-10-03, by Pierre-Yves David
addset: drop the leading underscore from the class name
2014-10-03, by Pierre-Yves David
addset: this is a smartset, update the docstring
2014-10-03, by Pierre-Yves David
addset: use the ascending argument in _iterordered
2014-10-09, by Pierre-Yves David
rebase: add help examples
2014-10-08, by Matt Mackall
rebase: attempt to clarify --base
2014-10-08, by Matt Mackall
manifest: rearrange add() method and add comments for clarity
2014-10-08, by Augie Fackler
manifest: simplify manifest.add() by making args required
2014-10-08, by Augie Fackler
manifest: move manifest parsing to module-level
2014-09-25, by Augie Fackler
revlog: move references to revlog.hash to inside the revlog class
2014-09-24, by Augie Fackler
revlog: mark nullhash as module-private
2014-09-24, by Augie Fackler
ui: disable echo back of prompt input if ui is set to non-tty purposely
2014-10-08, by Yuya Nishihara
dirstate: cache util.normcase while constructing the foldmap
2014-10-03, by Siddharth Agarwal
normcase: for darwin, use fast ASCII lower
2014-10-03, by Siddharth Agarwal
perf: add a way to measure the perf of constructing the foldmap
2014-10-03, by Siddharth Agarwal
encoding.lower: use fast ASCII lower
2014-10-03, by Siddharth Agarwal
parsers: add a function to efficiently lowercase ASCII strings
2014-10-03, by Siddharth Agarwal
match: remove unnecessary setting of self._always
2014-09-30, by Martin von Zweigbergk
bookmarks: port to generic templater
2014-10-03, by Yuya Nishihara
bookmarks: split ui.write() so that it can be easily ported to formatter api
2014-10-03, by Yuya Nishihara
bookmarks: iterate bookmarks list even if it is known to be empty
2014-10-03, by Yuya Nishihara
repoview: remove hiddencache verification
2014-10-06, by David Soria Parra
color: reorganise and sectionify the help text
2014-10-06, by Jordi Gutiérrez Hermoso
color: update description of the extension
2014-10-06, by Jordi Gutiérrez Hermoso
help: show all nested subsections of a section with `hg help foo.section`
2014-10-06, by Jordi Gutiérrez Hermoso
help: fix output of sections in `hg help foo.somesection`
2014-10-06, by Jordi Gutiérrez Hermoso
log: show phase in hg log -v with the phase template
2014-10-04, by Jordi Gutiérrez Hermoso
log: add labels to the phase template
2014-10-04, by Jordi Gutiérrez Hermoso
log: rewrite default template to use labels (issue2866)
2014-10-03, by Jordi Gutiérrez Hermoso
log: do not hide the public phase in debug mode (BC)
2014-10-04, by Jordi Gutiérrez Hermoso
templater: set the correct phase for parents
2014-10-03, by Jordi Gutiérrez Hermoso
color: omit debug label output on empty strings
2014-10-03, by Jordi Gutiérrez Hermoso
tests: make hghave list features alphabetically
2014-10-04, by Yuya Nishihara
revset: remove the now unused _descgeneratorset class
2014-10-03, by Pierre-Yves David
revset: use _generatorset in _revancestors
2014-10-03, by Pierre-Yves David
revset: remove now unused class _ascgeneratorset
2014-10-03, by Pierre-Yves David
revset: use _generatorset directly in _revdescendant
2014-10-03, by Pierre-Yves David
generatorset: move membership testing on ordered gen to the main class
2014-10-03, by Pierre-Yves David
generatorset: make use of the new mechanism in the subclass
2014-10-03, by Pierre-Yves David
generatorset: make it possible to use gen as fastasc or fastdesc
2014-10-03, by Pierre-Yves David
baseset: rely on the abstractsmartset implementation for filter
2014-10-03, by Pierre-Yves David
_orderedsetmixin: drop this now unused class
2014-10-02, by Pierre-Yves David
spanset: drop _orderedsetmixin inheritance
2014-10-02, by Pierre-Yves David
orderedlazyset: drop this now unused class
2014-10-03, by Pierre-Yves David
_descendant: use filteredset instead of orderedlazyset
2014-10-02, by Pierre-Yves David
addset: use the base implementation for ascending and descending
2014-10-03, by Pierre-Yves David
addset: use base implementation for __filter__
2014-10-03, by Pierre-Yves David
addset: use base implementation for __add__
2014-10-03, by Pierre-Yves David
addset: use base implementation for __sub__
2014-10-03, by Pierre-Yves David
addset: use base implementation for __and__
2014-10-03, by Pierre-Yves David
addset: promote to real smartset
2014-10-02, by Pierre-Yves David
addset: add a __nonzero__ method
2014-10-03, by Pierre-Yves David
addset: offer a fastasc and fastdesc methods
2014-10-02, by Pierre-Yves David
addset: split simple and ordered iteration
2014-10-02, by Pierre-Yves David
generatorset: promote to smartset
2014-10-03, by Pierre-Yves David
generatorset: implement __nonzero__
2014-10-03, by Pierre-Yves David
spanset: use base implementation for __add__
2014-10-03, by Pierre-Yves David
spanset: use base implementation for __sub__
2014-10-03, by Pierre-Yves David
spanset: use base implementation for __and__
2014-10-03, by Pierre-Yves David
spanset: use base implementation for filter
2014-10-03, by Pierre-Yves David
filteredset: use base implementation for filter
2014-10-03, by Pierre-Yves David
filteredset: use base implementation for __add__
2014-10-03, by Pierre-Yves David
filteredset: use base implementation for __sub__
2014-10-03, by Pierre-Yves David
filteredset: use base implementation for __and__
2014-10-03, by Pierre-Yves David
abstractsmartset: add default implementation for __sub__
2014-10-02, by Pierre-Yves David
abstractsmartset: add default implementation for __add__
2014-10-02, by Pierre-Yves David
abstractsmartset: add default implementation for __and__
2014-10-02, by Pierre-Yves David
abstractsmartset: add default implementation for filter
2014-10-01, by Pierre-Yves David
lazyset: rename the class to filteredset
2014-10-03, by Pierre-Yves David
lazyset: add order awareness to the class
2014-10-02, by Pierre-Yves David
lazyset: remove min/max
2014-10-02, by Pierre-Yves David
baseset: remove min/max methods
2014-10-02, by Pierre-Yves David
abstractsmartset: add a default implementation for min and max
2014-10-02, by Pierre-Yves David
lazyset: drop now useless ascending/descending definition
2014-10-02, by Pierre-Yves David
lazyset: inherit the fastasc and fastdesc method from subset
2014-09-30, by Pierre-Yves David
lazyset: split the iteration logic from the condition filtering logic
2014-10-02, by Pierre-Yves David
spanset: do a single range check in __contains__
2014-10-02, by Pierre-Yves David
spanset: enforce the order lazily to gain `fastasc` and `fastdesc` methods
2014-10-02, by Pierre-Yves David
abstractsmartset: document the `fastasc` and `fastdesc` attributes/methods
2014-09-30, by Pierre-Yves David
spanset: remove ascending/descending implementation
2014-10-02, by Pierre-Yves David
baseset: remove ascending/descending redefinition
2014-10-02, by Pierre-Yves David
abstractsmartset: default implementation for `ascending` and `descending`
2014-10-02, by Pierre-Yves David
revert: bring back usage of `subset & ps` in `parents`
2014-09-17, by Pierre-Yves David
color: update docstring for debug option
2014-08-24, by Jordi Gutiérrez Hermoso
color: document the possibility to colourise tabs in diffs
2014-08-20, by Jordi Gutiérrez Hermoso
contrib/synthrepo: walk a repo's directory structure during analysis
2014-09-12, by Mike Edgar
contrib/synthrepo: generate initial repo contents using directory shape model
2014-09-12, by Mike Edgar
filemerge: switch the default name for internal tools from internal:x to :x
2014-09-28, by Mads Kiilerich
filemerge: introduce :x as short version of internal:x merge tool name
2014-09-28, by Mads Kiilerich
branches: include active, closed and current flags in template output
2014-10-02, by Yuya Nishihara
branches: merge white space to format string
2014-10-02, by Yuya Nishihara
branches: port to generic templater
2014-10-02, by Yuya Nishihara
branches: format rev as integer that is necessary for generic templater
2014-10-02, by Yuya Nishihara
formatter: add general way to switch hex/short functions
2014-10-03, by Yuya Nishihara
locarepo: remove the `pull` method (API)
2014-10-03, by Pierre-Yves David
transplant: use exchange.pull
2014-10-03, by Pierre-Yves David
convert-hg: use localrepo.pull
2014-10-03, by Pierre-Yves David
fetch: use exchange.pull
2014-10-03, by Pierre-Yves David
localrepo: use exchange.pull when cloning
2014-10-03, by Pierre-Yves David
subrepo: use exchange.pull
2014-10-03, by Pierre-Yves David
commands: directly use exchange.pull
2014-10-03, by Pierre-Yves David
exchange: have `pull` return the pulloperation object
2014-10-03, by Pierre-Yves David
revset: introduce an abstractsmartset class
2014-10-01, by Pierre-Yves David
revset: add a `__nonzero__` to baseset
2014-10-01, by Pierre-Yves David
revset: drop isinstance(baseset) in spanset.__sub__
2014-10-01, by Pierre-Yves David
revset: drop isinstance(baseset) in spanset.__and__
2014-10-01, by Pierre-Yves David
revset: drop isinstance(baseset) from baseset.__and__
2014-09-30, by Pierre-Yves David
revset: use direct access to __contains__ in spanset.__sub__
2014-10-01, by Pierre-Yves David
revset: use a single return statement in matcher function
2014-09-30, by Pierre-Yves David
obsolete: replace "nb" notation with "num" (for "number")
2014-10-02, by Pierre-Yves David
shelve: remove unused status variables
2014-09-24, by Martin von Zweigbergk
gpg: use an abort hint and don't mention --force
2014-10-02, by Matt Mackall
gpg: move test of force before status call
2014-10-02, by Matt Mackall
gpg: drop unnecessary slicing of status array
2014-09-24, by Martin von Zweigbergk
tag: use an abort hint
2014-10-02, by Matt Mackall
tag: only check the status of .hgtags
2014-10-02, by Matt Mackall
tag: properly abort if an unknown or ignored .hgtags is present
2014-10-02, by Matt Mackall
summary: remove unused code for listing ignored files
2014-10-01, by Martin von Zweigbergk
fetch: use cmdutil.bailifchanged()
2014-10-01, by Martin von Zweigbergk
ui: fix comment about non-interactive prompts
2014-10-02, by Matt Mackall
formatter: convert booleans to json
2014-10-02, by Yuya Nishihara
merge: mute the status message when bid merge kicks in
2014-10-01, by Mads Kiilerich
merge: use bid merge by default (BC)
2014-10-01, by Mads Kiilerich
changectx: skip all invalid merge.preferancestor values
2014-10-01, by Mads Kiilerich
revset: rely on built in iterator when possible in _generatorset.__iter__
2014-04-30, by Pierre-Yves David
revset: prefetch an attribute in _generatorset.__iter__
2014-09-18, by Pierre-Yves David
templater: add count template filter, plus tests
2014-09-09, by Anton Shestakov
push: update bookmarks (on server) within a transaction
2014-09-28, by Pierre-Yves David
pull: perform bookmark updates in the transaction
2014-09-28, by Pierre-Yves David
bookmark: add a `bmstore.recordupdate` to plug bookmarks into the transaction
2014-09-28, by Pierre-Yves David
bookmarks: split bookmark serialization and file handling
2014-09-27, by Pierre-Yves David
transaction: allow generating file outside of store
2014-09-28, by Pierre-Yves David
transaction: work around and document issue with file backup
2014-10-01, by Pierre-Yves David
bundle2: remove an explicit packing
2014-10-02, by Pierre-Yves David
bundle2: split test in two
2014-10-01, by Pierre-Yves David
pull: merge bookmark updates and imports
2014-09-28, by Pierre-Yves David
pull: gather explicit bookmark pulls with bookmark updates
2014-09-28, by Pierre-Yves David
subrepo: stop pulling bookmark manually
2014-09-28, by Pierre-Yves David
pull: retrieve bookmarks through bundle2
2014-09-27, by Pierre-Yves David
pull: retrieve bookmarks before obsmarkers
2014-09-27, by Pierre-Yves David
pull: move bookmark pulling into its own function
2014-09-27, by Pierre-Yves David
pull: perform the todostep inside functions handling old way of pulling
2014-09-27, by Pierre-Yves David
bookmark: remove now unused `pushtoremote` function
2014-09-26, by Pierre-Yves David
push: gather all bookmark decisions together
2014-09-27, by Pierre-Yves David
push: prepare the issue of multiple kinds of messages
2014-09-26, by Pierre-Yves David
push: set bkresult when pushing bookmarks through bundle2
2014-10-02, by Pierre-Yves David
clone: remove duplicated bookmark pulling
2014-09-26, by Pierre-Yves David
clone: explicitly push bookmarks when cloning from local to remote
2014-09-26, by Pierre-Yves David
clone: copy `.hg/bookmarks` during copy clone
2014-09-26, by Pierre-Yves David
pull: move bookmark movements inside the `exchange.pull`
2014-09-26, by Pierre-Yves David
bookmarks: allow `updatefromremote` to be quiet
2014-10-02, by Pierre-Yves David
util: fix sorteddict.pop
2014-10-02, by Pierre-Yves David
localrepo: pass arbitrary kwargs from `repo.pull` to `exchange.pull`
2014-09-26, by Pierre-Yves David
pull: use `other.url()` as the source of a bookmark pull
2014-09-26, by Pierre-Yves David
setup: set mode 644 or 755 on installed files
2014-09-30, by Kyle Lippincott
branches: reduce nesting in for loop
2014-10-02, by Yuya Nishihara
i18n: use datapath for i18n like for templates and help
2014-09-28, by Mads Kiilerich
help: don't search randomly for help data - trust util.datapath
2014-09-28, by Mads Kiilerich
templater: don't search randomly for templates - trust util.datapath
2014-09-28, by Mads Kiilerich
templater: inline global 'path' list in templatepaths
2014-09-28, by Mads Kiilerich
templater: introduce templatepaths for getting paths searched for templates
2014-09-28, by Mads Kiilerich
util: introduce datapath for getting the location of supporting data files
2014-09-28, by Mads Kiilerich
util: move _hgexecutable a few lines, closer to where it is used
2014-09-28, by Mads Kiilerich
hgk: define bookmark colour explicitly, as Tk 8.6 has changed their meaning
2014-09-28, by Andrew Shadura
largefiles: remove 'forget' list that's always empty
2014-09-30, by Martin von Zweigbergk
bookmarks: fix divergent bookmark path normalization
2014-10-02, by Matt Mackall
exchange: remove a broken i18n abuse
2014-10-02, by Matt Mackall
bookmark: make the search for divergent names more robust
2014-09-26, by Pierre-Yves David
pull: gather all bookmark-pulling code together
2014-09-25, by Pierre-Yves David
push: perform bookmark export in the push function
2014-09-25, by Pierre-Yves David
push: add `pushoperation.bkresult`
2014-09-25, by Pierre-Yves David
push: pass list of bookmark to `exchange.push`
2014-09-25, by Pierre-Yves David
exchange: import bookmarks as bookmod
2014-09-25, by Pierre-Yves David
push: sanitize handling of bookmark push return value
2014-09-25, by Pierre-Yves David
locarepo: remove the `push` method (API)
2014-09-25, by Pierre-Yves David
push: `exchange.push` instead of `localrepo.push`
2014-09-25, by Pierre-Yves David
clone: use `exchange.push` instead of `localrepo.push`
2014-09-25, by Pierre-Yves David
push: use `exchange.push` in `commands.push`
2014-09-25, by Pierre-Yves David
push: `exchange.push` now returns the `pushoperation` object
2014-09-25, by Pierre-Yves David
push: rename `pushop.ret` to `pushop.cgresult`
2014-09-25, by Pierre-Yves David
obsolete: use version constants in the format mapping
2014-09-16, by Pierre-Yves David
obsolete: use the `version` argument in encodemarkers
2014-09-16, by Pierre-Yves David
obsolete: gather all contents related to format version 0 in a single place
2014-09-12, by Pierre-Yves David
revert: properly back up added files with local modification
2014-08-31, by Pierre-Yves David
revert: track added files with local modifications
2014-08-30, by Pierre-Yves David
revert: distinguish between "check" and "backup" strategy
2014-08-30, by Pierre-Yves David
revert: small refactoring in the way backup value are handled
2014-08-30, by Pierre-Yves David
merge with stable
2014-10-01, by Matt Mackall
Added signature for changeset f768c888aaa6
stable
2014-10-01, by Matt Mackall
Added tag 3.1.2 for changeset f768c888aaa6
stable
2014-10-01, by Matt Mackall
parsers: fix Py2.4 argument parsing issue
2014-10-01, by Matt Mackall
merge with i18n
stable
3.1.2
2014-10-01, by Matt Mackall
diff: document the nobinary option
stable
2014-09-30, by Jordi Gutiérrez Hermoso
i18n-pt_BR: minor fixes and rewording on histedit help text
stable
2014-09-30, by Wagner Bruna
i18n-pt_BR: synchronized with c712238c4f9b
stable
2014-09-30, by Wagner Bruna
merge with i18n
stable
2014-09-30, by Wagner Bruna
i18n-pt_BR: synchronized with 802dffd62de5
stable
2014-09-22, by Wagner Bruna
filelog: censored files compare against empty data, have 0 size
2014-09-14, by Mike Edgar
filelog: raise CensoredNodeError when hash checks fail with censor metadata
2014-09-03, by Mike Edgar
error: add CensoredNodeError, will be thrown when content deliberately erased
2014-09-03, by Mike Edgar
files: cache repo.dirstate
2014-09-30, by Siddharth Agarwal
files: only check for removed, not unknown or missing
2014-09-30, by Siddharth Agarwal
files: use ctx.matches instead of ctx.walk
2014-09-30, by Siddharth Agarwal
files: actually filter out removed files
2014-09-30, by Siddharth Agarwal
subrepo: remove superfluous newline from subrepo prompt
2014-10-01, by Mads Kiilerich
ui: show prompt choice if input is not a tty but is forced to be interactive
2014-10-01, by Mads Kiilerich
merge with stable
2014-09-30, by Matt Mackall
help: basic support for showing only specified topic sections
2014-09-30, by Matt Mackall
help: use OS containers for config file lists
2014-09-30, by Matt Mackall
help: support OS-specific help sections
2014-09-30, by Matt Mackall
minirst: allow multiple container types for prune
2014-09-30, by Matt Mackall
config: don't read the same config file twice
2014-09-04, by Mads Kiilerich
templater: fix precedence of --style and --template options
stable
2014-09-30, by Yuya Nishihara
shelve: avoid writing file that is never read from
2014-09-29, by Martin von Zweigbergk
hgk: don't break on repositories with obsolete changesets
2014-09-28, by Andrew Shadura
less
more
|
(0)
-10000
-3000
-1000
-240
+240
+1000
+3000
+10000
tip