##// END OF EJS Templates
clone: print "updating working directory" status message...
clone: print "updating working directory" status message With this change, "hg clone" looks like this: % hg clone http://example.com/repo/big big requesting all changes adding changesets adding manifests adding file changes added XXX changesets with XXX changes to XXX files updating working directory XXX files updated, XXX files merged, XXX files removed, XXX files unresolved So the user sees % hg clone http://example.com/repo/big big requesting all changes adding changesets adding manifests adding file changes added XXX changesets with XXX changes to XXX files updating working directory while Mercurial is writing to disk to populate the working directory With this change, "hg clone" looks like this: % hg clone big big-work updating working directory XXX files updated, XXX files merged, XXX files removed, XXX files unresolved

File last commit:

r6262:de7256c8 default
r6338:0750f111 default
Show More
test-serve.out
12 lines | 378 B | text/plain | TextLexer
Joel Rosdahl
Add test reproducing a bug in "hg serve -v"
r4504 % Without -v
Alexis S. L. Carvalho
serve: respect settings from .hg/hgrc...
r4835 access log created - .hg/hgrc respected
Joel Rosdahl
Add test reproducing a bug in "hg serve -v"
r4504 % With -v
Stephen Deasey
hgweb: clarify which address and port can/cannot be bound at startup (bug 769)...
r6262 listening at http://localhost/ (127.0.0.1)
Michele Cella
tests for hg serve prefix option
r5971 % With --prefix foo
Stephen Deasey
hgweb: clarify which address and port can/cannot be bound at startup (bug 769)...
r6262 listening at http://localhost/foo/ (127.0.0.1)
Michele Cella
tests for hg serve prefix option
r5971 % With --prefix /foo
Stephen Deasey
hgweb: clarify which address and port can/cannot be bound at startup (bug 769)...
r6262 listening at http://localhost/foo/ (127.0.0.1)
Michele Cella
tests for hg serve prefix option
r5971 % With --prefix foo/
Stephen Deasey
hgweb: clarify which address and port can/cannot be bound at startup (bug 769)...
r6262 listening at http://localhost/foo/ (127.0.0.1)
Michele Cella
tests for hg serve prefix option
r5971 % With --prefix /foo/
Stephen Deasey
hgweb: clarify which address and port can/cannot be bound at startup (bug 769)...
r6262 listening at http://localhost/foo/ (127.0.0.1)