We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 19e2a49 + f90c69a commit 7010a1fCopy full SHA for 7010a1f
README.markdown
@@ -176,11 +176,11 @@ repository which name on its own line. This would allow you to easily
176
redirect the output of this command sequence to `~/.svn2git/authors` and have
177
a very good starting point for your mapping.
178
179
- $ svn log --quiet | grep -E "r[0-9]+ \| .+ \|" | cut -d'|' -f2 | sed 's/^ //' | sort | uniq
+ $ svn log --quiet | grep -E "r[0-9]+ \| .+ \|" | cut -d'|' -f2 | sed 's/ //g' | sort | uniq
180
181
Or, for a remote URL:
182
183
- $ svn log --quiet http://path/to/root/of/project | grep -E "r[0-9]+ \| .+ \|" | cut -d'|' -f2 | sed 's/^ //' | sort | uniq
+ $ svn log --quiet http://path/to/root/of/project | grep -E "r[0-9]+ \| .+ \|" | cut -d'|' -f2 | sed 's/ //g' | sort | uniq
184
185
Debugging
186
---------
0 commit comments