1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
#!/usr/bin/env bash
. ./lib
rm -rf fooOld tempA tempB
mkdir fooOld tempA tempB
cd fooOld
darcs init
echo record author me > _darcs/prefs/defaults
echo ALL all >> _darcs/prefs/defaults
#echo ALL verbose >> _darcs/prefs/defaults
echo Old > foo
darcs add foo
darcs record -m Old
cd ..
cd tempA
darcs init
cp ../fooOld/_darcs/prefs/defaults _darcs/prefs
darcs pull ../fooOld
echo A > foo
darcs record -m AA
cd ..
cd tempB
darcs init
cp ../fooOld/_darcs/prefs/defaults _darcs/prefs
darcs pull ../fooOld
echo B > foo
darcs record -m BB
darcs pull ../tempA
echo A > foo
darcs record -m "ok A's fine."
cd ..
# At this point, tempB and tempA should agree--since the conflict was
# resolved in favor of tempA.
cmp tempB/foo tempA/foo
cd tempA
echo AA > foo
darcs record -m "AA -- upping the ante."
cd ..
cd tempB
darcs pull ../tempA
cd ..
cd tempA
darcs pull ../tempB
cd ..
# At this point, tempB and tempA should agree since we have pulled both ways.
cmp tempB/foo tempA/foo
|