Skip to content

Commit 7010a1f

Browse files
committed
Merge pull request nirvdrum#191 from edpbx/readmeids
Stop README ID-extract snippet leaving spaces end of line
2 parents 19e2a49 + f90c69a commit 7010a1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,11 @@ repository which name on its own line. This would allow you to easily
176176
redirect the output of this command sequence to `~/.svn2git/authors` and have
177177
a 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

181181
Or, 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

185185
Debugging
186186
---------

0 commit comments

Comments
 (0)