hg
23 lines
| 531 B
| text/plain
|
TextLexer
mpm@selenic.com
|
r0 | #!/usr/bin/env python | ||
# | ||||
# mercurial - a minimal scalable distributed SCM | ||||
mpm@selenic.com
|
r193 | # v0.5b "katje" | ||
mpm@selenic.com
|
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
|
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
|
r0 | |||
mpm@selenic.com
|
r246 | import sys | ||
mpm@selenic.com
|
r248 | from mercurial import commands | ||
mpm@selenic.com
|
r0 | |||
mpm@selenic.com
|
r248 | sys.exit(commands.dispatch(sys.argv[1:])) | ||
mpm@selenic.com
|
r24 | |||