File: issue194.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 (26 lines) | stat: -rw-r--r-- 618 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
. ./lib

rm -rf temp1 temp2

mkdir temp1; cd temp1 ; darcs init ; cd ..
darcs get temp1 temp2
cd temp2/ ; echo 'x' > _darcs/prefs/author ; cd ..
cd temp1/ ; echo 'x' > _darcs/prefs/author ; cd ..

cd temp1/
touch test
darcs add test     ; darcs record -a -m 'test'
darcs mv test best ; darcs record -a -m 'test -> best'
darcs mv best test ; darcs record -a -m 'best -> test'
cd ..

cd temp2/
touch test2
darcs add test2     ; darcs record -a -m 'test2'
darcs mv test2 best ; darcs record -a -m 'test2 -> best'
darcs mv best test2 ; darcs record -a -m 'best -> test2'

darcs pull ../temp1/ -a
cd ..

rm -rf temp1 temp2