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
176
176
redirect the output of this command sequence to ` ~/.svn2git/authors ` and have
177
177
a very good starting point for your mapping.
178
178
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
180
180
181
181
Or, for a remote URL:
182
182
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
184
184
185
185
Debugging
186
186
---------
You can’t perform that action at this time.
0 commit comments