Skip to content

Commit

Permalink
Fix committer email address
Browse files Browse the repository at this point in the history
  • Loading branch information
az0 committed Mar 22, 2014
1 parent 83230de commit 4090a64
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions svn2git.sh
Expand Up @@ -7,14 +7,17 @@
# This method loses release history, but it keeps all the commits (except for the bonus and misc directories).
time git svn clone http://svn.code.sf.net/p/bleachbit/code/trunk

# After conversion, push to Github
# Fix committer (there was only one direct committer)
cd trunk
git filter-branch -f --env-filter "GIT_AUTHOR_NAME='Andrew Ziem'; GIT_AUTHOR_EMAIL='ahz001@gmail.com'; GIT_COMMITTER_NAME='Andrew Ziem'; GIT_COMMITTER_EMAIL='ahz001@gmail.com';" HEAD

# Push to Github
git remote add origin git@github.com:az0/bleachbit.git
git push origin master


# Repeat for misc
time git svn clone http://svn.code.sf.net/p/bleachbit/code/misc
cd misc
git filter-branch -f --env-filter "GIT_AUTHOR_NAME='Andrew Ziem'; GIT_AUTHOR_EMAIL='ahz001@gmail.com'; GIT_COMMITTER_NAME='Andrew Ziem'; GIT_COMMITTER_EMAIL='ahz001@gmail.com';" HEAD
git remote add origin git@github.com:az0/bleachbit-misc.git
git push origin master

0 comments on commit 4090a64

Please sign in to comment.