Created
May 27, 2015 13:20
-
-
Save fasiha/d20068a1478512ac59b3 to your computer and use it in GitHub Desktop.
Poor man's svn2git
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
svn list -R `svn info | grep "Working Copy" | cut -d":" -f2` | grep -v '/$' | tr '\n' '\0' | xargs -0 git add | |
# Or just use https://github.com/nirvdrum/svn2git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Alternatively, to roll in
git init
: