Hi,
diffuse behaves differently depending on the order of arguments when passing a single file and a directory as arguments.
Assume you have a certain file "filename.txt" in your currentl directory ".", and one to compare with in a subdirectory "subdir".
Pure file comparison might be:
diffuse filename.txt subdir/filename.txt
This particular use case is as such:
diffuse . subdir/filename.txt
and this does not work. An error pops up stating 'Error processing argument ".". Directory not expected.' If you click away the error message, the file is compared against nothing.
On the other hand
diffuse subdir/filename.txt .
does work as expected.
Does diffuse not handle diffing directories at all, except with "-m"?
diffuse -m . subdir/locale.txt
or
diffuse -m . subdir/
(both without revision control) does exactly nothing and exits with return code 0.
And why does
diffuse subdir/filename.txt .
actually work?
Nobody/Anonymous
None
None
Public
|
Date: 2012-01-25 15:22:36 PST Diffuse does not compare directories at all yet but this is planned. |