Skip to content

Commit

Permalink
Adding compression to rsync commands
Browse files Browse the repository at this point in the history
This speeds up transfers significantly. No reason not to include it as far as I know.
  • Loading branch information
timkelty authored and ncanceill committed Jun 8, 2014
1 parent f82092a commit f7948ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plugins/rsync/rsync.plugin.zsh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
alias rsync-copy="rsync -av --progress -h"
alias rsync-move="rsync -av --progress -h --remove-source-files"
alias rsync-update="rsync -avu --progress -h"
alias rsync-synchronize="rsync -avu --delete --progress -h"
alias rsync-copy="rsync -avz --progress -h"
alias rsync-move="rsync -avz --progress -h --remove-source-files"
alias rsync-update="rsync -avzu --progress -h"
alias rsync-synchronize="rsync -avzu --delete --progress -h"

0 comments on commit f7948ac

Please sign in to comment.