Workaround: from cd to /c and rsync using relative paths.
So this works:
cd /c touch temp/test.txt rsync temp/test.txt temp/test2.txt
while this does not happen even if you cd before /c :
$ rsync /c/temp/test.txt /c/temp/test2.txt The source and destination cannot both be remote.
Tested with Git Bash, which comes with git 2.9.0.windows.1 .
Jon Olav Vik
source share