Mercurial > hg
view tests/test-paths @ 11087:dc2f37864348
keyword: simplify record switch in kwtemplater.overwrite
1) use kwtemplater.record attribute for clarity
2) drop optional context argument; consider the speed loss by
duplicating the dictionary lookup repo['.'] as negligible
author | Christian Ebert <blacktrash@gmx.net> |
---|---|
date | Sat, 01 May 2010 23:59:39 +0200 |
parents | 92eb0a019bf2 |
children |
line wrap: on
line source
#!/bin/sh hg init a hg clone a b cd a echo '[paths]' >> .hg/hgrc echo 'dupe = ../b' >> .hg/hgrc hg in dupe | fgrep '../' cd .. hg -R a in dupe | fgrep '../' true