Displaying 1 result from an estimated 1 matches for "4544512".
2007 Dec 28
1
Odd behavior with --detect-renamed
...the target-side.
> $ find src
> src
> src/dir1
> src/dir1/dir2
> src/dir1/dir2/file
>
> $ find dst
> dst
> dst/dir1
> dst/dir1/file
>
> $ rsync -avv --detect-renamed -e ssh src/dir1 localhost:dst
> [...]
> total: matches=0 hash_hits=0 false_alarms=0 data=4544512
The file isn't detected as a rename.
If I create 'dir2' manually on the target-side, it is detected correctly:
> $ find src
> src
> src/dir1
> src/dir1/dir2
> src/dir1/dir2/file
>
> $ find dst
> dst
> dst/dir1
> dst/dir1/file
> dst/dir1/dir2
>
>...