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
/
replace_after_pending_mv.sh
blob
3848081f8028e03c3b82331af3c36b708f0875e0
1
#!/usr/bin/env bash
2
3
set -ev
4
5
rm
-fr
temp1
6
7
mkdir temp1
8
cd
temp1
9
darcs init
10
11
echo
a b a b a b
>
A
12
darcs add A
13
darcs record
--all --patch-name
=
p1
14
darcs
mv
A B
15
if
darcs replace a c B |
grep
Skipping
;
then
16
exit
1
17
fi
18
cd
..
19
20
rm
-fr
temp1
21