File: issue27.sh

package info (click to toggle)
darcs 2.18.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,960 kB
  • sloc: haskell: 47,748; sh: 13,466; ansic: 447; perl: 134; makefile: 8
file content (43 lines) | stat: -rw-r--r-- 705 bytes parent folder | download | duplicates (5)
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
#!/bin/sh

. ./lib

rm -rf temp1 temp2
mkdir temp1 temp2
cd temp1
darcs init
echo first > a
darcs add a
darcs record --pipe --all --name=first <<EOF
Thu Sep 18 22:37:06 MSD 2008
author
EOF

echo first > b
darcs add b
darcs record --pipe --all --name=first <<EOF
Thu Sep 18 22:37:06 MSD 2008
author
EOF

cd ../temp2
darcs init
darcs pull --all --dont-allow-conflicts ../temp1
echo second >> a
darcs record --pipe --all --name=second <<EOF
Thu Sep 18 22:37:07 MSD 2008
author
EOF

cd ../temp1
echo second >> b
darcs record --pipe --all --name=second <<EOF
Thu Sep 18 22:37:07 MSD 2008
author
EOF

darcs pull --all --dont-allow-conflicts ../temp2
test `darcs changes --count` = "4"
cd ..

rm -rf temp1 temp2