Re: BUG?find renamed files

2019-11-12 Thread Uwe Brauer
>>> "M" == Marcus writes: > On 12/11/2019 14.20, Uwe Brauer wrote: >> hg log -r "adds(test_2.org)" --template "{file_copies"} > Surely there is a typo at the end of the line?! Right. hg log -r "adds(test_2.org)" --template "{file_copies}" Is the correct syntax >> hg log -r

Re: BUG?find renamed files

2019-11-12 Thread Marcus
On 12/11/2019 14.20, Uwe Brauer wrote: hg log -r "adds(test_2.org)" --template "{file_copies"} Surely there is a typo at the end of the line?! hg log -r "adds(annu-hoja2.tex)" --template "{file_copies}" I obtain hg: parse error: adds requires a pattern Is this a BUG? I don't think so,

BUG?find renamed files

2019-11-12 Thread Uwe Brauer
Hi The following script works nicely hg init echo "First" > test.org hg add test.org hg commit -m "First" echo "Second" >> test.org hg commit -m "Second" echo "Third" >> test.org hg commit -m "Third" mv test.org test_2.org hg addremove hg commit -m "Moved file name" hg log -r