This file contains hidden or 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
| #add existing to git | |
| git init | |
| git add . | |
| git remote add origin git@github.com:USERNAME/REPONAME.git | |
| git push -u origin master | |
| #remove svn | |
| find . -name '.svn' -type d -print0 | xargs -0 rm -rf | |
| git commit -a -m 'removing svn files' |