Also make it `cut` friendly using a tab to separate the numbers and names.
Signed-off-by: Pierre Habouzit <redacted>
---
On Tue, Dec 11, 2007 at 02:05:08PM +0000, Ingo Molnar wrote:
> please switch around the column too so that the commit count comes
> first, this is way too ugly:
>
> Junio C Hamano: 4826
> Shawn O. Pearce: 1146
> Linus Torvalds: 950
[...]
Agreed, here is the patch that does that, and a sample output is:
$ git shortlog -n -s -e HEAD -- builtin-commit.c
11 Junio C Hamano [off-list ref]
6 Johannes Schindelin [off-list ref]
6 Kristian Høgsberg [off-list ref]
2 Jeff King [off-list ref]
1 Alex Riesen [off-list ref]
1 Pierre Habouzit [off-list ref]
1 Shawn Bohrer [off-list ref]
1 Wincent Colaiuta [off-list ref]
builtin-shortlog.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/builtin-shortlog.c b/builtin-shortlog.c
index 13df0c6..90666cb 100644
--- a/builtin-shortlog.c
+++ b/builtin-shortlog.c
@@ -265,7 +265,7 @@ int cmd_shortlog(int argc, const char **argv, const char *prefix)
struct path_list *onelines = list.items[i].util;
if (summary) {
- printf("%s: %d\n", list.items[i].path, onelines->nr);
+ printf("%6d\t%s\n", onelines->nr, list.items[i].path);
} else {
printf("%s (%d):\n", list.items[i].path, onelines->nr);
for (j = onelines->nr - 1; j >= 0; j--) {--
1.5.3.7.2226.g8312-dirty