File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -132,6 +132,17 @@ svn2git will load it out of there. This allows you to build up one authors
132132file for all your projects and have it loaded for each repository that you
133133migrate.
134134
135+ If you need a jump start on figuring out what users made changes in your
136+ svn repositories the following command sequence might help. It grabs all
137+ the logs from the svn repository, pulls out all the names from the commits,
138+ sorts them, and then reduces the list to only unique names. So, in the end
139+ it outputs a list of usernames of the people that made commits to the svn
140+ repository which name on its own line. This would allow you to easily
141+ redirect the output of this command sequence to ~ /.svn2git/authors and have
142+ a very good starting point for your mapping.
143+
144+ $ svn log | grep -E "r[0-9]+ \| [a-z]+ \|" | awk '{print $3}' | sort | uniq
145+
135146Debugging
136147---------
137148
You can’t perform that action at this time.
0 commit comments