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
Find git executable at run time
[git-darcs-import.git]
/
tests
/
addrm.sh
blob
a5932fab91968dad7403b16faa85cb1c3a1242b5
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
touch
foo
9
darcs add foo
10
darcs record
-a -m
add_foo
-A
x
11
darcs remove foo
12
darcs record
-a -m
del_foo
-A
x
13
cd
..
/
temp2
14
darcs init
15
darcs pull
--all
..
/
temp1
16
cd
..
17
rm
-rf
temp1 temp2
18