Skip to content

Instantly share code, notes, and snippets.

View tomotomo's full-sized avatar

Tomoyuki Sugita tomotomo

View GitHub Profile
Gitリポジトリで管理しているWordPressプラグインを
SVNリポジトリと同期しておく方法について miya0001 さんからアドバイスもらった。
rsync不勉強なので忘れないようにメモメモ
```
rsyncの時に余計なファイルを持ってかないように.bash_profileに以下のように入れとくと便利。
alias rsync="rsync -avz --exclude=\".svn\" --exclude=\".DS_Store\" --exclude=\".git\""
```