diff options
author | Nicolas Lécureuil <neoclust@mageia.org> | 2013-04-15 15:26:47 +0100 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2013-04-15 15:26:47 +0100 |
commit | 2d98494a1d33009cd93b785f43abba6b504dfbf9 (patch) | |
tree | b03dc4b29979652dad5d3eda1289d073f23df55f | |
parent | 8610a6645672e21e7c684f23a57b5f03727c5504 (diff) | |
download | svn-git-migration-2d98494a1d33009cd93b785f43abba6b504dfbf9.tar svn-git-migration-2d98494a1d33009cd93b785f43abba6b504dfbf9.tar.gz svn-git-migration-2d98494a1d33009cd93b785f43abba6b504dfbf9.tar.bz2 svn-git-migration-2d98494a1d33009cd93b785f43abba6b504dfbf9.tar.xz svn-git-migration-2d98494a1d33009cd93b785f43abba6b504dfbf9.zip |
Do not perform the user map every time.
Instead we will do this process manually once and then map peoples
real names such that things are nicely formatted.
-rwxr-xr-x | scripts/mandriva-svn2git.sh | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/scripts/mandriva-svn2git.sh b/scripts/mandriva-svn2git.sh index c50f17b..fe88d56 100755 --- a/scripts/mandriva-svn2git.sh +++ b/scripts/mandriva-svn2git.sh @@ -7,13 +7,6 @@ if [ -z $SOFTWARE ]; then echo "Missing software to convert..." fi -if [ ! -f authors-transform.txt ]; then -# STEP 1: Create an author listi -echo 'OK' -svn log -q http://svn.mandriva.com/svn/soft | awk -F '|' '/^r/ {sub("^ ", "", $2); sub(" $", "", $2); print $2" = "$2" <"$2"@mandriva.org>"}' | sort -u >> authors-transform.txt -#vim authors-transform.txt -fi - # STEP 2: Import in git git svn clone http://svn.mandriva.com/svn/soft/$SOFTWARE --no-metadata -A authors-transform.txt --stdlayout temp |