File: pending.sh

package info (click to toggle)
darcs 2.18.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 6,008 kB
  • sloc: haskell: 47,748; sh: 13,466; ansic: 447; perl: 134; makefile: 6
file content (37 lines) | stat: -rw-r--r-- 562 bytes parent folder | download | duplicates (7)
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
#!/usr/bin/env bash
. ./lib

rm -rf temp temp_0
mkdir temp
cd temp
darcs init
date > bla
darcs add bla
darcs record -a --name=11
echo hello > world
darcs add world
darcs whatsnew --dont-look-for-adds > wn1
cd ..
darcs get temp
cd temp_0
date > bla2
date >> bla
darcs add bla2
darcs record -a --name=22
darcs push -a ../temp
cd ..
cd temp
darcs whatsnew --dont-look-for-adds > wn2
diff wn1 wn2

darcs record -a -m 'cleaning up for new test.'
date > foo.jpg
darcs add foo.jpg
darcs whatsnew

darcs remove foo.jpg
darcs whatsnew && exit 1

cd ..

rm -rf temp temp0