##// END OF EJS Templates
histedit: improve documentation and behaviour of dates...
histedit: improve documentation and behaviour of dates This clarifies in the histedit documentation that the 'edit' action preserves the date and that the 'fold' action uses the later date. The documentation was previously silent on this issue which left users in doubt.

File last commit:

r26420:2fc86d92 default
r31055:f1b63ec4 default
Show More
test-eol-tag.t
39 lines | 574 B | text/troff | Tads3Lexer
Matt Mackall
urls: bulk-change BTS urls to new location
r26420 https://bz.mercurial-scm.org/2493
Colin Caughie
eol: exclude .hgtags file from eol translation (issue2493)
r12974
Testing tagging with the EOL extension
Martin Geisler
tests: don't overwrite HGRCPATH...
r13519 $ cat >> $HGRCPATH <<EOF
Colin Caughie
eol: exclude .hgtags file from eol translation (issue2493)
r12974 > [extensions]
> eol =
>
> [eol]
> native = CRLF
> EOF
setup repository
$ hg init repo
$ cd repo
$ cat > .hgeol <<EOF
> [patterns]
> ** = native
> EOF
$ printf "first\r\nsecond\r\nthird\r\n" > a.txt
$ hg commit --addremove -m 'checkin'
adding .hgeol
adding a.txt
Tag:
$ hg tag 1.0
Rewrite .hgtags file as it would look on a new checkout:
$ hg update -q null
$ hg update -q
Touch .hgtags file again:
$ hg tag 2.0
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913
$ cd ..