equal
deleted
inserted
replaced
281 echo % revert a |
281 echo % revert a |
282 hg revert --no-backup --rev tip a |
282 hg revert --no-backup --rev tip a |
283 echo % cat a |
283 echo % cat a |
284 cat a |
284 cat a |
285 |
285 |
|
286 echo % clone |
|
287 cd .. |
|
288 |
|
289 echo % expansion in dest |
|
290 hg --quiet clone Test globalconf |
|
291 cat globalconf/a |
|
292 echo % no expansion in dest |
|
293 hg --quiet --config 'keyword.**=ignore' clone Test localconf |
|
294 cat localconf/a |
|
295 |
286 echo % clone to test incoming |
296 echo % clone to test incoming |
287 cd .. |
|
288 hg clone -r1 Test Test-a |
297 hg clone -r1 Test Test-a |
289 cd Test-a |
298 cd Test-a |
290 cat <<EOF >> .hg/hgrc |
299 cat <<EOF >> .hg/hgrc |
291 [paths] |
300 [paths] |
292 default = ../Test |
301 default = ../Test |