5
# add two dirs with the some contents, then remove the second
6
# and make it a symlink to the first
8
echo blabla > dira/file
9
echo blablabla > dira/file2
14
git commit -a -m "add dira/dirb"
18
git commit -a -m "change a dir to a symlink"
26
(cd test; git fast-export --progress=2 HEAD) | (cd test.darcs; darcs-fast-import)
27
# we *do* want this to fail, but with error code 2. that means that we
28
# detected that symlinks are not supported and the user does not get a
29
# meaningless exception
34
# now try with the symhack option
40
(cd test; git fast-export --progress=2 HEAD) | (cd test.darcs; darcs-fast-import --symhack)