##// 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:

r5029:ac97e065 default
r6338:0750f111 default
Show More
test-hgignore
67 lines | 1.1 KiB | text/plain | TextLexer
Benoit Boissinot
add a test for hgignore
r1478 #!/bin/sh
hg init
Patrick Mezard
Test issue 562: .hgignore requires newline at end
r4439
# Test issue 562: .hgignore requires newline at end
touch foo
touch bar
touch baz
cat > makeignore.py <<EOF
f = open(".hgignore", "w")
f.write("ignore\n")
f.write("foo\n")
# No EOL here
f.write("bar")
f.close()
EOF
python makeignore.py
echo % should display baz only
hg status
rm foo bar baz .hgignore makeignore.py
Benoit Boissinot
add a test for hgignore
r1478 touch a.o
touch a.c
touch syntax
mkdir dir
touch dir/a.o
touch dir/b.o
touch dir/c.o
hg add dir/a.o
hg commit -m 0
hg add dir/b.o
echo "--" ; hg status
echo "*.o" > .hgignore
Thomas Arendsen Hein
Fix broken hgignore tests due to full path showing up in output.
r2009 echo "--" ; hg status 2>&1 | sed -e 's/abort: .*\.hgignore:/abort: .hgignore:/'
Benoit Boissinot
add a test for hgignore
r1478
echo ".*\.o" > .hgignore
echo "--" ; hg status
Thomas Arendsen Hein
Fix re: and glob: patterns in .hgignore (reported by Brad Schick)...
r5029 echo "glob:**.o" > .hgignore
echo "--" ; hg status
echo "glob:*.o" > .hgignore
echo "--" ; hg status
echo "syntax: glob" > .hgignore
echo "re:.*\.o" >> .hgignore
echo "--" ; hg status
Benoit Boissinot
add a test for hgignore
r1478
echo "syntax: invalid" > .hgignore
Thomas Arendsen Hein
Fix broken hgignore tests due to full path showing up in output.
r2009 echo "--" ; hg status 2>&1 | sed -e 's/.*\.hgignore:/.hgignore:/'
Benoit Boissinot
add a test for hgignore
r1478
echo "syntax: glob" > .hgignore
echo "*.o" >> .hgignore
echo "--" ; hg status
echo "relglob:syntax*" > .hgignore
echo "--" ; hg status
echo "relglob:*" > .hgignore
echo "--" ; hg status
Benoit Boissinot
fix a bug in dirstate.changes when cwd != repo.root...
r1491
cd dir
Benoit Boissinot
make all commands be repo-wide by default...
r1568 echo "--" ; hg status .