File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -176,11 +176,11 @@ repository which name on its own line. This would allow you to easily
176176redirect the output of this command sequence to ` ~/.svn2git/authors ` and have
177177a very good starting point for your mapping.
178178
179- $ svn log --quiet | grep -E "r[0-9]+ \| .+ \|" | cut -d'|' -f2 | sed 's/^ //' | sort | uniq
179+ $ svn log --quiet | grep -E "r[0-9]+ \| .+ \|" | cut -d'|' -f2 | sed 's/ //g ' | sort | uniq
180180
181181Or, for a remote URL:
182182
183- $ svn log --quiet http://path/to/root/of/project | grep -E "r[0-9]+ \| .+ \|" | cut -d'|' -f2 | sed 's/^ //' | sort | uniq
183+ $ svn log --quiet http://path/to/root/of/project | grep -E "r[0-9]+ \| .+ \|" | cut -d'|' -f2 | sed 's/ //g ' | sort | uniq
184184
185185Debugging
186186---------
You can’t perform that action at this time.
0 commit comments