SVN -> Git migration
new_project_name="common-search-api"
svn_project_loc="https://svn.trustwave.com/engineering/services/common-search/common-search-api"
git_project_loc="https://git.trustwave.com/common-search/common-search-api.git"
nohup git svn clone --stdlayout --authors-file=authors.txt ${svn_project_loc} ${new_project_name} &
sudo touch /tmp/svn-git-migration.log
sudo chown $USER:$USER /tmp/svn-git-migration.log
cd ${new_project_name}
java -Dfile.encoding=utf-8 -jar ~/svn-migration-scripts.jar clean-git --force
git remote add origin ${git_project_loc}
git push -u origin --all
git push --tags