File: mergeresolved.sh

package info (click to toggle)
darcs 2.18.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,008 kB
  • sloc: haskell: 47,748; sh: 13,466; ansic: 447; perl: 134; makefile: 6
file content (54 lines) | stat: -rw-r--r-- 975 bytes parent folder | download | duplicates (2)
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