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
/
invalid_pending_after_mv_to_self.sh
blob
0700ef0a966e2585194380a93822c9f4b8f72976
1
#!/usr/bin/env bash
2
3
# A regression test for issue567
4
5
set -ev
6
7
rm
-rf
temp
8
mkdir temp
9
cd
temp
10
darcs init
11
mkdir dir
12
touch
dir
/
t.t
13
darcs add dir
14
darcs add dir
/
t.t
15
darcs record
-am
'initial add'
16
17
# grand finale? Can we move the file to itself?
18
darcs
mv
dir
/
t.t dir
/
19
20
cd
..
21
22
rm
-rf
temp