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
+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.
split: use ctx.rev() instead of %d % ctx
2018-02-24, by Gregory Szorc
commands: use ctx.rev() instead of %d % ctx
2018-02-24, by Gregory Szorc
cmdutil: use ctx.rev() instead of %d % ctx
2018-02-24, by Gregory Szorc
rebase: use ctx.rev() instead of %d % ctx
2018-02-24, by Gregory Szorc
histedit: use ctx.rev() instead of %d % ctx
2018-02-24, by Gregory Szorc
histedit: rename variables so they have "ctx" in them
2018-02-24, by Gregory Szorc
cmdutil: use ctx.rev() instead of int(ctx)
2018-02-24, by Gregory Szorc
templatekw: use ctx.rev() instead of casting context to int
2018-02-24, by Gregory Szorc
py3: fix handling of keyword arguments at more places
2018-02-24, by Pulkit Goyal
py3: use '%d' for integers instead of '%s'
2018-02-24, by Pulkit Goyal
merge with stable
2018-02-24, by Kevin Bullock
py3: use '//' for integer division in hgweb/common.py
2018-02-24, by Pulkit Goyal
py3: use util.forcebytestr to convert error messages to bytes
2018-02-24, by Pulkit Goyal
py3: add b'' prefixes to config options in test/badserverext.py
2018-02-24, by Pulkit Goyal
py3: replace file() with open()
2018-02-24, by Pulkit Goyal
py3: make sure regexes are bytes
2018-02-24, by Pulkit Goyal
py3: convert dict.items() to list explicitly
2018-02-24, by Pulkit Goyal
py3: whitelist another 8 passing tests
2018-02-24, by Pulkit Goyal
py3: use '//' for integer divisions
2018-02-24, by Pulkit Goyal
py3: use "%d" for integers instead of "%s"
2018-02-24, by Pulkit Goyal
py3: use util.forcebytestr instead of str to convert error messages
2018-02-24, by Pulkit Goyal
py3: use pycompat.byteskwargs() to fix keyword arguments handling
2018-02-24, by Pulkit Goyal
setup: only allow Python 3 from a source checkout (issue5804)
stable
2018-02-23, by Gregory Szorc
tests: add HTTP POST and PUT support to the $LOGDATE$ substitution
2018-02-23, by Matt Harbison
py3: make regex bytes in hgweb/webcommands.py
2018-02-23, by Pulkit Goyal
py3: replace types.NoneType with type(None)
2018-02-23, by Pulkit Goyal
py3: add missing b'' in test-arbitraryfilectx.t
2018-02-23, by Pulkit Goyal
py3: pass ctx.rev() instead of ctx in range()
2018-02-23, by Pulkit Goyal
py3: add b'' prefixes in test-alias.t
2018-02-23, by Pulkit Goyal
py3: add b'' prefixes in test-revset.t
2018-02-23, by Pulkit Goyal
py3: make sure we use bytes in generate-working-copy-states.py
2018-02-23, by Pulkit Goyal
py3: fix keyword arguments handling in hgext/acl.py
2018-02-23, by Pulkit Goyal
py3: use pycompat.bytestr to convert str returned by getpass.getuser to bytes
2018-02-23, by Pulkit Goyal
py3: add b'' prefixes in test-abort-checkin.t
2018-02-23, by Pulkit Goyal
py3: add b'' prefixes in test-dispatch.py
2018-02-21, by Pulkit Goyal
cleanup: say goodbye to manifestv2 format
2018-02-22, by Augie Fackler
wireproto: document the wonky push protocol for SSH
2018-02-21, by Gregory Szorc
wireprototypes: move baseprotocolhandler from wireprotoserver
2018-02-21, by Gregory Szorc
sshpeer: defer pipe buffering and stderr sidechannel binding
2018-02-21, by Gregory Szorc
sshpeer: make pipe polling code more explicit
2018-02-21, by Gregory Szorc
tests: store protocol payload in files
2018-02-19, by Gregory Szorc
sshpeer: return framed file object when needed
2018-02-21, by Gregory Szorc
sshpeer: move logic for sending a request into a new function
2018-02-21, by Gregory Szorc
help: fix wording describing SSH requirements
stable
2018-02-21, by Josef 'Jeff' Sipek
graphlog: document what "_" and "*" mean
stable
2018-02-22, by Anton Shestakov
sshpeer: rename _recv and _send to _readframed and _writeframed
2018-02-19, by Gregory Szorc
util: add a file object proxy that can read at most N bytes
2018-02-21, by Gregory Szorc
patches: release the GIL while applying the patch
2018-02-05, by Boris Feld
perfbranchmap: allow to select the filter to benchmark
2018-02-21, by Boris Feld
perfbranchmap: display 'unfiltered' for unfiltered performance
2018-02-21, by Boris Feld
py3: two more narrow tests passing
2018-02-22, by Augie Fackler
narrowbundle2: more kwargs native string fixes
2018-02-22, by Augie Fackler
py3: whitelist another 11 passing tests
2018-02-21, by Augie Fackler
narrowbundle2: use native string to get kwargs from dict
2018-02-21, by Augie Fackler
narrowbundle2: drop legacy getcgkwargs variable
2018-02-21, by Augie Fackler
fancyopts: add support for custom multi-arg opts in fancyopts.py
2018-02-21, by Daniel Ploch
narrowcommands: add some missing strkwargs calls for py3
2018-02-21, by Augie Fackler
narrowwirepeer: add some strkwargs to fix a crash on py3
2018-02-21, by Augie Fackler
narrowchangegroup: remove backwards compatibility with old hg
2018-02-21, by Augie Fackler
narrowbundle2: replace map() with equivalent list comprehension
2018-02-21, by Augie Fackler
narrowbundle2: this dict contains native strings, look kws up as such
2018-02-21, by Augie Fackler
tests: port extension in test-narrow-expanddirstate.t to Python 3
2018-02-21, by Augie Fackler
py3: use list comprehensions instead of filter where we need to eagerly filter
2018-02-21, by Augie Fackler
narrow: use list comprehension instead of filter for filtering lists
2018-02-21, by Augie Fackler
py3: whitelist another eight passing tests
2018-02-21, by Augie Fackler
mq: don't reimplement any()
2018-02-06, by Martin von Zweigbergk
mq: don't reimplement any()
2018-02-06, by Martin von Zweigbergk
strip: don't reimplement any()
2018-02-06, by Martin von Zweigbergk
convert: don't reimplement any()
2018-02-06, by Martin von Zweigbergk
verify: don't reimplement any()
2018-02-06, by Martin von Zweigbergk
walkrepos: don't reimplement any()
2018-02-06, by Martin von Zweigbergk
py3: make sure we open file in bytes mode
2018-02-21, by Pulkit Goyal
py3: add b'' to test-ui-color.py
2018-02-21, by Pulkit Goyal
debuginstall: strip double quotes from editorbin on Windows
2018-02-20, by Matt Harbison
pycompat: correct the shlex.split() proxy method signature in py3
2018-02-20, by Matt Harbison
merge with stable
2018-02-20, by Augie Fackler
convert: don't use type as a variable name
2018-02-19, by Pulkit Goyal
convert: don't use bytes as a variable name
2018-02-19, by Pulkit Goyal
py3: add a r'' prefix to prevent transformer from adding b''
2018-02-19, by Pulkit Goyal
py3: use pycompat.byteskwargs in hgext/convert/
2018-02-19, by Pulkit Goyal
py3: add b'' prefixes in test-mdiff.py
2018-02-19, by Pulkit Goyal
py3: use dict.items() instead of dict.iteritems() in tests
2018-02-19, by Pulkit Goyal
py3: add b'' prefixes in test-transplant.t
2018-02-19, by Pulkit Goyal
py3: add b'' prefixes in fakepatchtime.py
2018-02-19, by Pulkit Goyal
py3: add b'' prefixes in fakedirstatewritetime.py
2018-02-19, by Pulkit Goyal
py3: use '%d' to convert integer to bytes
2018-02-19, by Pulkit Goyal
hgweb: show each obsfateentry on its own line
2018-02-19, by Anton Shestakov
tests: check obsolete changeset with two obsfate entries
2018-02-19, by Anton Shestakov
py3: whitelist another six passing tests
2018-02-18, by Augie Fackler
lock: delay is numeric, use %d for formatting
2018-02-18, by Augie Fackler
debugbuilddag: use '%d' instead of str() to get numbered lines
2018-02-18, by Augie Fackler
tests: add missing b prefixes in test-pending.t
2018-02-18, by Augie Fackler
merge: make a copy of dict.items() before mutating the dict during iteration
2018-02-18, by Augie Fackler
largefiles: give some **opts some strkwargs love
2018-02-18, by Augie Fackler
wireproto: fix lingering str(exception) with util.forcebytestr(exception)
2018-02-18, by Augie Fackler
scmutil: fix requires-file isalnum() check on first byte
2018-02-18, by Augie Fackler
largefiles: mark headre as bytes regex
2018-02-18, by Augie Fackler
largfiles: replace filter() with listcomp when result needs to be a list
2018-02-18, by Augie Fackler
largefiles: make scheme regex a bytes regex
2018-02-18, by Augie Fackler
debuginstall: do not parse editor command in posix way on Windows
2018-02-17, by Yuya Nishihara
py3: use bytes() to byte-stringify url object in url.py
2018-02-18, by Yuya Nishihara
url: show full url of proxy server in debug message
2018-02-18, by Yuya Nishihara
py3: make sure we are doing integer division by using '//'
2018-02-19, by Pulkit Goyal
py3: make sure regex is bytes in crecord.py
2018-02-19, by Pulkit Goyal
py3: use "%d" for integers instead of "%s"
2018-02-19, by Pulkit Goyal
py3: make sure we open the files in bytes mode
2018-02-18, by Pulkit Goyal
py3: whitelist another three passing tests
2018-02-18, by Augie Fackler
manifest: use list(dict) instead of dict.keys() to get a list of keys
2018-02-18, by Augie Fackler
manifest: correct the one use of iterkeys() on a dict
2018-02-18, by Augie Fackler
py3: use default dict iterator instead of iterkeys
2018-02-18, by Augie Fackler
py3: whitelist five more passing tests
2018-02-18, by Augie Fackler
httppeer: headers are native strings
2018-02-18, by Augie Fackler
hgweb: header dict entries are native strings
2018-02-18, by Augie Fackler
keepalive: headers are native strings, mark them as such
2018-02-18, by Augie Fackler
py3: use range instead of xrange on py3 in tests/test-ui-verbosity.py
2018-02-18, by Pulkit Goyal
py3: use range instead of xrange in tests/test-revset2.t
2018-02-18, by Pulkit Goyal
py3: use range instead of xrange in tests/test-mq-qimport.t
2018-02-18, by Pulkit Goyal
py3: use range instead of xrange in tests/test-issue4074.t
2018-02-18, by Pulkit Goyal
py3: use range instead of xrange in tests/test-convert-mtn.t
2018-02-18, by Pulkit Goyal
py3: use range instead of xrange in tests/test-commandserver.t
2018-02-18, by Pulkit Goyal
py3: use range instead of xrange in tests/test-walk.t
2018-02-18, by Pulkit Goyal
py3: use range instead of xrange in tests/test-mq-missingfiles.t
2018-02-18, by Pulkit Goyal
py3: use range instead of xrange on py3 in tests/test-filecache.py
2018-02-18, by Pulkit Goyal
py3: use range instead on xrange on py3 in tests/test-atomictempfile.py
2018-02-18, by Pulkit Goyal
py3: add b'' prefix in test-mq-qrefresh-replace-log-message.t
2018-02-18, by Pulkit Goyal
py3: add b'' prefixes in test-mq-eol.t
2018-02-18, by Pulkit Goyal
py3: explicitly convert result of dict.items() into list
2018-02-18, by Pulkit Goyal
py3: use pycompat.byteskwargs() to convert opts keys to bytes
2018-02-18, by Pulkit Goyal
wireprotoserver: py3 helpfully calls adds HTTP_ to CONTENT_LENGTH
2018-02-18, by Augie Fackler
tests: port inline Python in test-http-branchmap.t to Python 3
2018-02-18, by Augie Fackler
hgweb_mod: partially undo 8afc25e7effc to fix py3
2018-02-17, by Augie Fackler
tags: don't feed both int and None to min()
2018-02-17, by Augie Fackler
tests: fix get-with-headers.py on python3 when writing to stdout
2018-02-17, by Augie Fackler
webcommands: use pycompat.strkwargs as needed
2018-02-17, by Augie Fackler
webcommands: unpack contents of length-1 dict portably
2018-02-17, by Augie Fackler
bundle2: use pycompat.strkwargs as needed
2018-02-17, by Augie Fackler
tests: add b prefixes to test-rebase-dest.t
2018-02-17, by Augie Fackler
rebase: sort roots by revision
2018-02-17, by Augie Fackler
httppeer: use %d to format int
2018-02-17, by Augie Fackler
extensions: reject any unicode strings in tables before loading
2018-02-17, by Yuya Nishihara
py3: make test-extdiff.t pass on Python 3
2018-02-17, by Yuya Nishihara
py3: make regexp patterns bytes in extdiff
2018-02-17, by Yuya Nishihara
py3: fix bytes-unicode dance while building docstring of extdiff
2018-02-17, by Yuya Nishihara
py3: factor out byterepr() which returns an asciified value on py3
2018-02-17, by Yuya Nishihara
remotenames: don't use the default value of logfmt for namespaces
2018-02-15, by Pulkit Goyal
py3: whitelist test-pull-http.t
2018-02-17, by Augie Fackler
scmutil: bytes-ify IOErrors before wrapping them in abort message
2018-02-17, by Augie Fackler
py3: port f to Python 3
2018-02-17, by Gregory Szorc
py3: replace file() with open() in test-convert-git.t
2018-02-11, by Pulkit Goyal
bundle: updates the help text for hg bundle (issue5744)
2018-02-15, by Sushil khanchi
py3: get bytes-repr of network errors portably
2018-02-17, by Augie Fackler
hgweb: open server logs in binary mode
2018-02-17, by Augie Fackler
tests: add some b prefixes in test-http-bundle1.t
2018-02-17, by Augie Fackler
hgweb: correctly bytes-ify status, not string-ify
2018-02-17, by Augie Fackler
printenv: port to python3
2018-02-17, by Augie Fackler
py3: whitelist another eight passing tests
2018-02-15, by Augie Fackler
remotenames: port partway to python3 by using collections.MutableMapping
2018-02-14, by Augie Fackler
tests: avoid referring to pvec in demandimport test
2018-02-16, by Martin von Zweigbergk
help: use cmdutil.parsealiases() to resolve command name
2018-01-08, by Yuya Nishihara
help: list deprecated and experimental extensions if --verbose
2015-12-27, by Yuya Nishihara
hgweb: translate Abort in help command to 404 error
2015-12-27, by Yuya Nishihara
templatekw: add {reporoot} keyword
2018-01-08, by Yuya Nishihara
templatefilters: add dirname() filter
2018-01-07, by Yuya Nishihara
templater: add function to help substituting patterns in template string
2018-01-07, by Yuya Nishihara
templater: extract function scanning template string
2018-01-07, by Yuya Nishihara
tests: expand test coverage for updating phases
stable
2018-02-18, by Gregory Szorc
tests: consolidate test-push-http.t and test-push-http-bundle1.t
stable
2018-02-18, by Gregory Szorc
tests: port value-less unbundle capability test to test-push-http.t
stable
2018-02-18, by Gregory Szorc
tests: add phase testing to test-push-http-bundle1.t
stable
2018-02-18, by Gregory Szorc
cmdutil: narrow scope of KeyError in makefilename()
2018-01-07, by Yuya Nishihara
node: make bin() be a wrapper instead of just an alias
2018-02-14, by Augie Fackler
tests: actually check that HGDEMANDIMPORT=disable disables demandimport
2018-02-16, by Martin von Zweigbergk
debugcommands: print out the editor that was searched for (post shlexsplit)
2018-01-04, by Kyle Lippincott
merge with stable
2018-02-16, by Augie Fackler
date: fix parsing months
stable
2018-02-16, by Jun Wu
hgweb: show dates recorded in obsolescence markers
2018-02-15, by Anton Shestakov
gitweb: make span.age CSS selector more specific
2018-02-15, by Anton Shestakov
wireprotoserver: return to using iscmd() method
2018-02-15, by Augie Fackler
githelp: cast commands to bytes
2018-02-11, by Gregory Szorc
py3: use util.forcebytestr instead of str for converting errors to bytes
2018-02-14, by Pulkit Goyal
py3: use pycompat.bytestr to convert str to bytes
2018-02-14, by Pulkit Goyal
mpatch: allow clang-format oversight
2018-02-12, by Augie Fackler
base85: allow clang-format oversight
2018-02-12, by Augie Fackler
charencode: allow clang-format oversight
2018-02-12, by Augie Fackler
formatting: enforce system headers before local headers
2018-02-14, by Augie Fackler
wireprotoserver: add version to HTTP protocol name (API)
2018-02-12, by Gregory Szorc
wireprotoserver: rename webproto to httpv1protocolhandler
2018-02-12, by Gregory Szorc
wireproto: improve docstring for "hello"
2018-02-12, by Gregory Szorc
httppeer: remove httpspeer
2018-02-12, by Gregory Szorc
httppeer: remove redundant code to fetch capabilities
2018-02-12, by Gregory Szorc
httppeer: change logic around argument handling
2018-02-01, by Gregory Szorc
tests: test using both versions of SSH protocol
2018-02-12, by Gregory Szorc
sshpeer: log remote capabilities after protocol upgrade
2018-02-08, by Gregory Szorc
wireprotoserver: handle SSH protocol version 2 upgrade requests
2018-02-12, by Gregory Szorc
wireprotoserver: move SSH server operation to a standalone function
2018-02-08, by Gregory Szorc
py3: stringify integer with %d instead of bytes()
2018-02-14, by Gregory Szorc
py3: add b'' to test-sshserver.py
2018-02-14, by Gregory Szorc
py3: add b'' to config options in test extension
2018-02-14, by Gregory Szorc
manifest: add support for including directories outside narrowspec
2018-02-13, by Martin von Zweigbergk
narrow: restrict manifest iteration by using manifest.walk(matcher)
2018-02-13, by Martin von Zweigbergk
narrow: only diff manifest part within narrowspec when generating changegroup
2018-02-13, by Martin von Zweigbergk
cmdutil: build "%m" (desc|firstline) in makefilename()
2018-01-06, by Yuya Nishihara
cmdutil: rewrite makefilename() to use ctx methods
2015-04-02, by Yuya Nishihara
cmdutil: pass ctx to makefileobj() in place of repo/node pair (API)
2015-04-02, by Yuya Nishihara
cmdutil: pass ctx to makefilename() in place of repo/node pair (API)
2015-04-02, by Yuya Nishihara
cmdutil: make node parameter of makefileobj() mandatory (API)
2015-04-02, by Yuya Nishihara
progress: use '%*d' to pad progress value
2018-02-14, by Yuya Nishihara
py3: stringify IOError/OSError without loosing local character
2018-02-14, by Yuya Nishihara
dirstate: drop explicit files that shouldn't match (BC) (issue4679)
2018-01-26, by Yuya Nishihara
log: add TODO comments about --line-range processing
2018-01-21, by Yuya Nishihara
log: factor out function to feed revisions to displayer
2018-01-21, by Yuya Nishihara
graphlog: unblock --line-range option
2018-01-21, by Yuya Nishihara
graphlog: deduplicate preprocessing of log command
2018-01-21, by Yuya Nishihara
hgweb: show users recorded in obsolescence markers
2018-02-14, by Anton Shestakov
revert: use an exact matcher in interactive diff selection (issue5789)
2018-02-14, by Denis Laxalde
tests: add a test demonstrate that 'revert -i' ignores nonexistent patterns
2018-02-11, by Denis Laxalde
py3: slice over bytes to prevent getting ascii values
2018-02-14, by Pulkit Goyal
py3: converts bytes to pycompat.bytestr to get bytechrs while enumerating
2018-02-14, by Pulkit Goyal
py3: use pycompat.{bytes|str}kwargs in transplant.py
2018-02-14, by Pulkit Goyal
py3: replace file() with open() in transplant.py
2018-02-14, by Pulkit Goyal
py3: use "%d" for converting int to bytes in transplant.py
2018-02-14, by Pulkit Goyal
py3: open files in bytes mode in transplant.py
2018-02-14, by Pulkit Goyal
py3: use pycompat.bytestr instead of str
2018-02-14, by Pulkit Goyal
py3: use "%d" to convert integers to bytes
2018-02-14, by Pulkit Goyal
py3: add couple of missing b'' in fakemergerecord.py
2018-02-14, by Pulkit Goyal
py3: add b'' to make sure regex pattern are bytes in hgweb/webutil.py
2018-02-14, by Pulkit Goyal
py3: add b'' prefixes in test-worker.t
2018-02-14, by Pulkit Goyal
py3: add b'' prefixes to make printrevset.py work in test-glog.t
2018-02-14, by Pulkit Goyal
py3: slice over bytes to prevent getting ascii values
2018-02-14, by Pulkit Goyal
python3: whitelist another 5 passing tests
2018-02-14, by Augie Fackler
py3: introduce and use pycompat.getargspec
2018-02-13, by Augie Fackler
merge: coerce nodes to bytes, not str
2018-02-13, by Augie Fackler
py3: whitelist more passing tests
2018-02-13, by Augie Fackler
histedit: binascii.unhexlify (aka node.bin) throws new exception type on py3
2018-02-13, by Augie Fackler
treemanifest: add an optimized __nonzero__()
2018-02-13, by Martin von Zweigbergk
tests: port fakemergerecord to python3
2018-02-13, by Augie Fackler
tests: add some b-prefixes on local script in test-histedit-arguments
2018-02-13, by Augie Fackler
tests: add bytes prefixes to test-histedit-fold.t's local extension
2018-02-13, by Augie Fackler
histedit: fix silly bug that was unpacking a bytestr before writing it
2018-02-13, by Augie Fackler
py3: whitelist another 8 passing tests
2018-02-13, by Augie Fackler
less
more
|
(0)
-30000
-10000
-3000
-1000
-240
+240
+1000
+3000
+10000
tip