projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b614e3d
)
[PATCH] remove "-r" option to xargs
author
Johannes Schindelin
<Johannes.Schindelin@gmx.de>
Thu, 28 Jul 2005 14:48:13 +0000
(16:48 +0200)
committer
Junio C Hamano
<junkio@cox.net>
Fri, 29 Jul 2005 07:12:02 +0000
(
00:12
-0700)
git-prune-script still contained that non-portable option.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-prune-script
patch
|
blob
|
history
diff --git
a/git-prune-script
b/git-prune-script
index
2c678f2
..
a8e338c
100755
(executable)
--- a/
git-prune-script
+++ b/
git-prune-script
@@
-20,6
+20,6
@@
sed -ne '/unreachable /{
s|\(..\)|\1/|p
}' | {
cd "$GIT_OBJECT_DIRECTORY" || exit
- xargs
-r
$dryrun rm -f
+ xargs $dryrun rm -f
}