| 824 | * 暫時的解法 |
| 825 | {{{ |
| 826 | ## 安裝 git-svn |
| 827 | ~$ sudo apt-get install git-svn |
| 828 | ## 產生 ID 名稱對應的檔案 |
| 829 | ~$ cat > authors.txt << EOF |
| 830 | jazz = Jazz Yao-Tsung Wang <jazzwang.tw@gmail.com> |
| 831 | jazzwang = Jazz Yao-Tsung Wang <jazzwang.tw@gmail.com> |
| 832 | EOF |
| 833 | ~$ git svn clone "svn+ssh://jazzwang@svn.code.sf.net/p/hadoop4win/code/" --no-metadata -A authors.txt hadoop4win-git |
| 834 | ~$ cd hadoop4win-git |
| 835 | ~/hadoop4win-git$ git config --global user.name "USERNAME" |
| 836 | ~/hadoop4win-git$ git config --global user.email "username@email.com" |
| 837 | ~/hadoop4win-git$ git remote add origin https://github.com/jazzwang/hadoop4win.git |
| 838 | ~/hadoop4win-git$ git pull origin master |
| 839 | ~/hadoop4win-git$ git svn dcommit |
| 840 | }}} |