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
/
issue244_changes.sh
blob
37c3c5d4cb115d0fec35380b8faa2e16f7dc83ac
1
#!/usr/bin/env bash
2
set -ev
3
4
# Issue244
5
# darcs changes should be able to pull up the history for a file
6
# using its moved and not-yet recorded new name
7
8
rm
-rf
temp1
9
mkdir temp1
10
cd
temp1
11
darcs init
12
touch
b
13
darcs add b
14
darcs record
-am
11
15
darcs
mv
b c
16
darcs changes c |
grep
11
17
cd
..
18
rm
-rf
temp1