repo.or.cz
/
git-darcs-import.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Follow upstream changes -- rest
[git-darcs-import.git]
/
tests
/
unrecord-setpref.sh
blob
d04b03ea9b8c5a4f02b906b0265a25f05b1ad42b
1
#!/usr/bin/env bash
2
set -ev
3
4
rm
-rf
temp1
5
mkdir temp1
6
cd
temp1
7
darcs init
8
9
darcs setpref boringfile foobar
10
11
darcs whatsnew
>
correct
12
cat
correct
13
14
darcs record
-a -m
'boringfoobar'
15
16
darcs unrecord
-a
17
18
darcs whatsnew
>
unrecorded
19
cat
unrecorded
20
21
diff
-u
correct unrecorded
22
23
cd
..
24
rm
-rf
temp1