Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'ap/prune'
author
Junio C Hamano
<junkio@cox.net>
Fri, 24 Nov 2006 11:42:36 +0000
(
03:42
-0800)
committer
Junio C Hamano
<junkio@cox.net>
Fri, 24 Nov 2006 11:42:36 +0000
(
03:42
-0800)
* ap/prune:
Typefix builtin-prune.c::prune_object()
Improve git-prune -n output
builtin-prune.c
patch
|
blob
|
history
raw
(from parent 1:
3fbe2d5
)
diff --git
a/builtin-prune.c
b/builtin-prune.c
index d853902c51e78800b76cf4714dffaa79600d3e53..8591d28b8e91c94636e9bf8b7e8ff5abcc0705e9 100644
(file)
--- a/
builtin-prune.c
+++ b/
builtin-prune.c
@@
-16,8
+16,15
@@
static struct rev_info revs;
static int prune_object(char *path, const char *filename, const unsigned char *sha1)
{
+ char buf[20];
+ const char *type;
+
if (show_only) {
- printf("would prune %s/%s\n", path, filename);
+ if (sha1_object_info(sha1, buf, NULL))
+ type = "unknown";
+ else
+ type = buf;
+ printf("%s %s\n", sha1_to_hex(sha1), type);
return 0;
}
unlink(mkpath("%s/%s", path, filename));