tests/test-copies.t
branchstable
changeset 42645 8c5a36805d5d
parent 42621 99ebde4fec99
child 43139 f78ad4caa5ad
equal deleted inserted replaced
42644:0795bbe8ed19 42645:8c5a36805d5d
    55   $ hg debugpathcopies 1 0 x
    55   $ hg debugpathcopies 1 0 x
    56   y -> x
    56   y -> x
    57   $ hg debugpathcopies 0 1 y
    57   $ hg debugpathcopies 0 1 y
    58   x -> y
    58   x -> y
    59   $ hg debugpathcopies 1 0 y
    59   $ hg debugpathcopies 1 0 y
       
    60 
       
    61 Copies not including commit changes
       
    62   $ newrepo
       
    63   $ echo x > x
       
    64   $ hg ci -Aqm 'add x'
       
    65   $ hg mv x y
       
    66   $ hg debugpathcopies . .
       
    67   $ hg debugpathcopies . 'wdir()'
       
    68   x -> y
       
    69   $ hg debugpathcopies 'wdir()' .
       
    70   y -> x
    60 
    71 
    61 Copy a file onto another file
    72 Copy a file onto another file
    62   $ newrepo
    73   $ newrepo
    63   $ echo x > x
    74   $ echo x > x
    64   $ echo y > y
    75   $ echo y > y