aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-11-24 03:42:36 -0800
committerJunio C Hamano <junkio@cox.net>2006-11-24 03:42:36 -0800
commitf3307deeec4b75001f543b4e7ca5a51f79a30e63 (patch)
treefdf7f77aed9528a625c10416c51463153829fae6
parent3fbe2d54d7d91378934df7b16d70dc5877586fae (diff)
parentac1471b39f1413046d4e338d898a93e403cbd3e5 (diff)
downloadgit-f3307deeec4b75001f543b4e7ca5a51f79a30e63.tar.gz
git-f3307deeec4b75001f543b4e7ca5a51f79a30e63.tar.xz
Merge branch 'ap/prune'
* ap/prune: Typefix builtin-prune.c::prune_object() Improve git-prune -n output
-rw-r--r--builtin-prune.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/builtin-prune.c b/builtin-prune.c
index d853902c5..8591d28b8 100644
--- 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));