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
update readmes
[git-darcs-import.git]
/
tests
/
addrace.sh
blob
9dc7174ea34a1e3c326efe95d79cc1f475d6808e
1
#!/usr/bin/env bash
2
set -ev
3
4
rm
-rf
temp1 temp2
5
mkdir temp1 temp2
6
cd
temp1
7
darcs init
8
echo
zig
>
foo
9
darcs add foo
10
#sleep 1
11
darcs record
-a -m
add_foo
-A
x
12
cd
..
/
temp2
13
darcs init
14
darcs pull
-a
..
/
temp1
15
cd
..
16
cmp
temp
1
/
foo temp
2
/
foo
17
rm
-rf
temp1 temp2
18