##// END OF EJS Templates
migrate remaining commands...
migrate remaining commands -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 migrate remaining commands This removes basically everything from the top-level hg script manifest hash: 34883e89d8def30e28936b38a9342d2f650f4c94 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCoiD7ywK+sNU5EO8RAh0cAKCeOO9vahYs0tGmMNKk8bflw35p2wCgr6Wr y0SNLHSVBMCzXtC9zlfDPog= =3nJx -----END PGP SIGNATURE-----

File last commit:

r248:b7645b3c default
r248:b7645b3c default
Show More
hg
23 lines | 531 B | text/plain | TextLexer
mpm@selenic.com
Add back links from file revisions to changeset revisions...
r0 #!/usr/bin/env python
#
# mercurial - a minimal scalable distributed SCM
mpm@selenic.com
Bump the version number to 0.5b for the protocol change...
r193 # v0.5b "katje"
mpm@selenic.com
Add back links from file revisions to changeset revisions...
r0 #
# Copyright 2005 Matt Mackall <mpm@selenic.com>
#
# This software may be used and distributed according to the terms
# of the GNU General Public License, incorporated herein by reference.
mpm@selenic.com
Add changegroup support
r46 # the psyco compiler makes commits a bit faster
# and makes changegroup merge about 20 times slower!
# try:
# import psyco
# psyco.full()
# except:
# pass
mpm@selenic.com
Add back links from file revisions to changeset revisions...
r0
mpm@selenic.com
Migrate rawcommit, import, export, history, and merge...
r246 import sys
mpm@selenic.com
migrate remaining commands...
r248 from mercurial import commands
mpm@selenic.com
Add back links from file revisions to changeset revisions...
r0
mpm@selenic.com
migrate remaining commands...
r248 sys.exit(commands.dispatch(sys.argv[1:]))
mpm@selenic.com
Add debughash and debugindex commands
r24