On Sat, Mar 08, 2014 at 07:47:04PM +0000, [email protected] wrote:
> Hi,
> 
> d:\test>fossil settings relative-paths
> relative-paths       (local)  1
> 
> d:\test>fossil extras
> test1.txt
> test2.txt
> 
> d:\test>fossil extras --abs-paths
> test1.txt
> test2.txt
> 
> d:\test>fossil settings relative-paths 0
> 
> d:\test>fossil settings relative-path
> relative-paths       (local)  0
> 
> d:\test>fossil extras
> test1.txt
> test2.txt
> 
> d:\test>fossil extras --abs-paths
> test1.txt
> test2.txt
> 
> This is on Windows 8.1 x64

Absolute path mean, absolute from the root of the checkout. Since you
always execute your command from the root of the checkout, relative or
absolute is equivalent. To see a difference you should try to work from
a subdirectory inside the checkout.

d:\test>cd somedir
d:\test\somedir>fossil extra --abs-paths
test1.txt
test2.txt

d:\test\somedir>fossil extra --rel-paths
..\test1.txt
..\test2.txt

-- 
Martin G.
_______________________________________________
fossil-users mailing list
[email protected]
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to