tests/test-mq-missingfiles
changeset 7506 abd2bc899d86
parent 5652 e90e72c6b4c7
equal deleted inserted replaced
7505:fe0e02f952b0 7506:abd2bc899d86
    69 cat c
    69 cat c
    70 echo % display rejections
    70 echo % display rejections
    71 cat b.rej
    71 cat b.rej
    72 cd ..
    72 cd ..
    73 
    73 
       
    74 echo % test push creating directory during git copy or rename
       
    75 hg init missingdir
       
    76 cd missingdir
       
    77 echo a > a
       
    78 hg ci -Am adda
       
    79 mkdir d
       
    80 hg copy a d/a2
       
    81 hg mv a d/a
       
    82 hg qnew -g -f patch
       
    83 hg qpop
       
    84 hg qpush
       
    85 cd ..