gulp-rsync icon indicating copy to clipboard operation
gulp-rsync copied to clipboard

Gulp plugin for deploying files via rsync

Results 36 gulp-rsync issues
Sort by recently updated
recently updated
newest added

I've gotten the following gulp task to transfer files from a Windows 10 machine to a remote Linux server. However, files are being copied with a backslash "\" vice forward...

My configuration file is: `var gulp = require('gulp');` `rsync = require('gulp-rsync');` `gulp.task('rsync', function() {` `return gulp.src('_site/**')` `.pipe(rsync({` `root: '_site',` `hostname: 'ftp.domain.com',` `username: '[email protected]',` `destination: 'public_html',` `incremental: true,` `recursive: true,` `compress:...

1. Make it work with rsync for Windows. rsync (cwRsync) needs paths with forward slashes. Otherwise, it just uploads a flat structure with filenames like "this\is\a\filename". 2. When option 'recursive',...

Hello. Is there a way to sync with muliple servers (hostnames, really)? If so, I can't for the life of me find it :)

Thanks for the plugin! It works great, but I have a small question about a part of the API that doesn't seem to gel with how gulp wants you to...

Error after updating version from 009 to 010 [22:12:04] gulp-rsync: Starting rsync to host:domen/www/... [22:12:04] 'deploy' errored after 16 ms [22:12:04] Error: Cannot find module 'gulp-util' Require stack: - /mnt/c/OSPanel/webwork/domen/node_modules/gulp-rsync/rsync.js...