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 -- Bytestring updates
[git-darcs-import.git]
/
tests
/
what_sl.sh
blob
c178fda582bbbb86514f6bbeec03df4c6ed3bf10
1
#!/usr/bin/env bash
2
3
set -ev
4
5
rm
-rf
temp1
6
mkdir temp1
7
cd
temp1
8
darcs init
9
touch
foo
10
darcs add foo
11
darcs rec
-m
t1
-a -A
tester
12
echo
1
>>
foo
13
darcs what
-s
|
grep
-v
No\ changes
14
darcs what
-l
|
grep
-v
No\ changes
15
darcs what
-sl
|
grep
-v
No\ changes
16
17
cd
..
18
rm
-rf
temp1
19