Mercurial
Mercurial
>
hg
/ graph
summary
|
shortlog
|
changelog
| graph |
tags
|
bookmarks
|
branches
|
files
|
zip
|
gz
|
bz2
|
help
less
more
|
(0)
-10000
-3000
-1000
-128
+128
+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.
util: drop local aliases for md5, sha1, sha256, and sha512
2016-06-10, by Augie Fackler
cleanup: replace uses of util.(md5|sha1|sha256|sha512) with hashlib.\1
2016-06-10, by Augie Fackler
pathencode: use hashlib.sha1 directly instead of indirecting through util
2016-06-10, by Augie Fackler
revlog: use hashlib.sha1 directly instead of through util
2016-06-10, by Augie Fackler
store: use hashlib.sha1 directly instead of through util
2016-06-10, by Augie Fackler
similar: delete extra newline at EOF
2016-06-10, by Augie Fackler
scmutil: delete extra newline at EOF
2016-06-10, by Augie Fackler
graphmod: avoid sorting when already sorted
2016-06-08, by Martijn Pieters
sslutil: per-host config option to define certificates
2016-06-07, by Gregory Szorc
tests: add basic tests for SMTP over SSL
2016-05-27, by Yuya Nishihara
tests: add dummy SMTP daemon for SSL tests
2016-05-27, by Yuya Nishihara
tests: extract SSL certificates from test-https.t
2016-05-27, by Yuya Nishihara
check-code: make 'ls' pattern less invasive
2016-05-31, by Yuya Nishihara
largefiles: fix support for local largefiles while using share extension
stable
2016-06-07, by Henrik Stuart
merge with stable
2016-06-09, by Matt Mackall
crecord: drop unused "operation" parameter from filterpatch function
2016-06-07, by Denis Laxalde
patch: define full messages for interactive record/revert
2016-06-07, by Denis Laxalde
hgweb: remove unused code in annotate web command
2016-06-01, by Denis Laxalde
py3: conditionalize cPickle import by adding in util
2016-06-04, by Pulkit Goyal
bdiff: remove effectively dead code
stable
2016-06-02, by Matt Mackall
bdiff: extend matches across popular lines
stable
2016-06-02, by Matt Mackall
test-revset: fix test vector for ordering issue of matching()
2016-06-03, by Yuya Nishihara
largefiles: rename match_ to matchmod import in lfutil
2016-05-20, by liscju
largefiles: rename match_ to matchmod import in reposetup
2016-05-12, by liscju
largefiles: rename match_ to matchmod import in overrides
2016-05-12, by liscju
largefiles: rename match_ to matchmod import in lfcommands
2016-05-12, by liscju
py3: make largefiles/wirestore.py use absolute_import
2016-05-10, by liscju
py3: make largefiles/uisetup.py use absolute_import
2016-05-10, by liscju
py3: make largefiles/reposetup.py use absolute_import
2016-05-10, by liscju
py3: make largefiles/remotestore.py use absolute_import
2016-05-10, by liscju
py3: make largefiles/proto.py use absolute_import
2016-05-10, by liscju
py3: make largefiles/overrides.py use absolute_import
2016-05-10, by liscju
py3: make largefiles/localstore.py use absolute_import
2016-05-10, by liscju
py3: make largefiles/lfutil.py use absolute_import
2016-05-10, by liscju
py3: make largefiles/lfcommands.py use absolute_import
2016-05-07, by liscju
py3: make largefiles/basestore.py use absolute_import
2016-05-06, by liscju
py3: make largefiles/__init__.py use absolute_import
2016-05-06, by liscju
largefiles: move basestore._openstore into new module to remove cycle
2016-06-04, by liscju
revset: make filteredset.__nonzero__ respect the order of the filteredset
2016-06-02, by Kostia Balytskyi
phases: make writing phaseroots file out avoid ambiguity of file stat
2016-06-03, by FUJIWARA Katsunori
dirstate: make writing branch file out avoid ambiguity of file stat
2016-06-03, by FUJIWARA Katsunori
dirstate: make writing dirstate file out avoid ambiguity of file stat
2016-06-03, by FUJIWARA Katsunori
bookmarks: make writing files out avoid ambiguity of file stat
2016-06-03, by FUJIWARA Katsunori
transaction: avoid ambiguity of file stat at closing transaction
2016-06-03, by FUJIWARA Katsunori
util: add __ne__ to filestat class for consistency
2016-06-03, by FUJIWARA Katsunori
style: remove namespace class
2016-04-16, by Pierre-Yves David
style: don't use capital letter for constant
2016-04-16, by Pierre-Yves David
tests-subrepo-git: use "f" to dump pwned.txt, for portability
stable
2016-06-02, by Danek Duvall
bundle2: don't assume ordering of heads checked after push
stable
2016-06-01, by Mads Kiilerich
sslutil: print the fingerprint from the last hash used
2016-06-04, by Gregory Szorc
sslutil: make cert fingerprints messages more actionable
2016-05-31, by Gregory Szorc
sslutil: refactor code for fingerprint matching
2016-05-30, by Gregory Szorc
sslutil: print SHA-256 fingerprint by default
2016-05-30, by Gregory Szorc
sslutil: move and change warning when cert verification is disabled
2016-05-30, by Gregory Szorc
sslutil: add devel.disableloaddefaultcerts to disable CA loading
2016-06-01, by Gregory Szorc
sslutil: store flag for whether cert verification is disabled
2016-05-30, by Gregory Szorc
sslutil: remove "strict" argument from validatesocket()
2016-05-30, by Gregory Szorc
mail: unsupport smtp.verifycert (BC)
2016-06-04, by Gregory Szorc
update: fix bare --clean to work on new branch (issue5003) (BC)
2016-04-05, by liscju
revert: use "discard"/"revert" verb when reverting interactively (issue5143)
2016-06-03, by Denis Laxalde
run-tests: add support for RTUNICODEPEDANTRY environment variable
2016-04-05, by timeless
obsolete: fix grammar
2016-05-27, by timeless
tests: add run-test .testtimes basic testing
2016-04-03, by timeless
check-code: make repquote distinguish more characters for exact detection
2016-05-31, by FUJIWARA Katsunori
check-code: centralize rules depending on implementation of repquote
2016-05-31, by FUJIWARA Katsunori
check-code: use fixedmap for replacement of space characters
2016-05-31, by FUJIWARA Katsunori
check-code: replace quoted characters correctly
2016-05-31, by FUJIWARA Katsunori
test-chg: add basic tests for server lifecycle
2016-05-21, by Yuya Nishihara
test-chg: run only with chg
2016-03-20, by Yuya Nishihara
distate: add assertions to backup functions
2016-05-26, by Mateusz Kwapich
Added signature for changeset a9764ab80e11
stable
2016-06-01, by Matt Mackall
Added tag 3.8.3 for changeset a9764ab80e11
stable
2016-06-01, by Matt Mackall
shelve: use backup functions instead of manually copying dirstate
2016-05-24, by Mateusz Kwapich
dirstate: don't use actualfilename to name the backup file
2016-05-25, by Mateusz Kwapich
sslutil: reference appropriate config section in messaging
2016-05-28, by Gregory Szorc
sslutil: allow fingerprints to be specified in [hostsecurity]
2016-05-28, by Gregory Szorc
debuginstall: expose modulepolicy
2016-03-09, by timeless
revset: define table of sort() key functions
2016-05-14, by Yuya Nishihara
revset: factor out reverse flag of sort() key
2016-05-14, by Yuya Nishihara
tests: don't save host fingerprints in hgrc
2016-05-28, by Gregory Szorc
sslutil: calculate host fingerprints from additional algorithms
2016-05-28, by Gregory Szorc
util: add sha256
2016-05-28, by Gregory Szorc
sslutil: move CA file processing into _hostsettings()
2016-05-28, by Gregory Szorc
sslutil: move SSLContext.verify_mode value into _hostsettings
2016-05-28, by Gregory Szorc
sslutil: introduce a function for determining host-specific settings
2016-05-28, by Gregory Szorc
tests-subrepo-git: emit a different "pwned" message based on the test
stable
3.8.3
2016-05-27, by Danek Duvall
tests-subrepo-git: make the "pwned" message output in a stable order
stable
2016-05-27, by Danek Duvall
test-cache-abuse: correct for different hunk headers between Solaris and GNU
stable
2016-05-27, by Danek Duvall
lazymanifest: fix typo s/typles/tuples/
stable
2016-05-27, by Javi Merino
sslutil: remove sslkwargs() (API)
2016-05-25, by Gregory Szorc
url: remove use of sslkwargs
2016-05-25, by Gregory Szorc
mail: remove use of sslkwargs
2016-05-25, by Gregory Szorc
httpconnection: remove use of sslkwargs
2016-05-25, by Gregory Szorc
sslutil: move sslkwargs logic into internal function (API)
2016-05-25, by Gregory Szorc
sslutil: remove ui from sslkwargs (API)
2016-05-25, by Gregory Szorc
dirstate: remove file from copymap on drop
2016-05-25, by Mateusz Kwapich
run-tests: use json.dumps(separators=)
2016-05-26, by timeless
debugignore: make messages translatable
2016-05-26, by FUJIWARA Katsunori
grep: make a message translatable
2016-05-26, by FUJIWARA Katsunori
subrepo: make a message translatable
2016-05-26, by FUJIWARA Katsunori
merge: make messages translatable
2016-05-26, by FUJIWARA Katsunori
httppeer: make a message translatable
2016-05-26, by FUJIWARA Katsunori
notify: make a message translatable
2016-05-26, by FUJIWARA Katsunori
gpg: make a message translatable
2016-05-26, by FUJIWARA Katsunori
revset: use getargsdict for sort()
2016-05-23, by Martijn Pieters
merge with stable
2016-05-25, by Matt Mackall
changegroup: extract method that sorts nodes to send
2016-05-12, by Augie Fackler
hg: disable demandimport for py3
2016-05-11, by timeless
tests: enable import checker for all python files (including no .py files)
2016-05-15, by Yuya Nishihara
tests: make 'f' utility import hashlib unconditionally
2016-05-15, by Yuya Nishihara
tests: fix typo of shebang prefix in test-check-pyflakes.t
2016-05-15, by Yuya Nishihara
hghave: silence future pyflakes warning of unused import
2016-05-15, by Yuya Nishihara
tests: remove unused import from 'f' utility
2016-05-15, by Yuya Nishihara
bookmarks: allow pushing active bookmark on new remote head (issue5236)
stable
2016-05-24, by liscju
sslutil: remove redundant check of sslsocket.cipher()
2016-05-15, by Gregory Szorc
sslutil: convert socket validation from a class to a function (API)
2016-05-15, by Gregory Szorc
sslutil: store and use hostname and ui in socket instance
2016-05-15, by Gregory Szorc
sslutil: use a dict for hanging hg state off the wrapped socket
2016-05-15, by Gregory Szorc
sslutil: require serverhostname argument (API)
2016-05-05, by Gregory Szorc
annotate: optimize line counting
2016-05-18, by Matt Mackall
purge: use opts.get()
2016-05-16, by Gregory Szorc
test-run-tests: clean up inuse server eagerly
2016-05-11, by timeless
tests: refactor run-tests helpers
2016-05-11, by timeless
tests: silence test-repo obsolete warning
2016-05-11, by timeless
largefiles: send statlfile remote calls only for nonexisting locally files
2016-05-09, by liscju
check-code: reject .next(...)
2016-05-16, by timeless
py3: convert to next() function
2016-05-16, by timeless
revset: rename variable to avoid shadowing with builtin next() function
2016-05-16, by timeless
less
more
|
(0)
-10000
-3000
-1000
-128
+128
+1000
+3000
+10000
tip