From f6610ab5453e1bcd7457b45968a148c5843bcc41 Mon Sep 17 00:00:00 2001 From: Ben Wolfe Date: Mon, 18 Jun 2012 17:49:13 -0300 Subject: [PATCH] Updated authors command: Added -q option so that only the authors are shown in the output. Added url example so that users are pulled from entire history --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 11f8bcf..0875fbe 100644 --- a/README.markdown +++ b/README.markdown @@ -174,7 +174,7 @@ repository which name on its own line. This would allow you to easily redirect the output of this command sequence to ~/.svn2git/authors and have a very good starting point for your mapping. - $ svn log | grep -E "r[0-9]+ \| .+ \|" | awk '{print $3}' | sort | uniq + $ svn -q log http://path/to/root/of/project | grep -E "r[0-9]+ \| .+ \|" | awk '{print $3}' | sort | uniq Debugging ---------