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
/
justrm.sh
blob
6c685407e582fd74cce7ea0ff16e657d349c172c
1
#!/usr/bin/env bash
2
set -ev
3
4
rm
-rf
temp1
5
mkdir temp1
6
cd
temp1
7
darcs init
8
touch
foo
9
darcs add foo
10
darcs record
-a -m
add_foo
-A
x
11
rm
foo
12
darcs whatsnew
13
cd
..
14
rm
-rf
temp1
15