mirror of
https://github.com/facebook/sapling.git
synced 2024-12-29 08:02:24 +03:00
c4f7d32501
Summary: Not sure what fixed these, but let's enable them. Reviewed By: quark-zju Differential Revision: D19800696 fbshipit-source-id: 2536a121ae37d4b23ef09dcfee8d92ccbbef3af6
28 lines
381 B
Perl
28 lines
381 B
Perl
#chg-compatible
|
|
|
|
$ hg init
|
|
|
|
$ echo a > a
|
|
$ hg ci -Ama
|
|
adding a
|
|
|
|
$ hg an a
|
|
0: a
|
|
|
|
$ hg --config ui.strict=False an a
|
|
0: a
|
|
|
|
$ setconfig ui.strict=true
|
|
|
|
No difference - "an" is an alias
|
|
|
|
$ hg an a
|
|
0: a
|
|
$ hg annotate a
|
|
0: a
|
|
|
|
should succeed - up is an alias, not an abbreviation
|
|
|
|
$ hg up
|
|
0 files updated, 0 files merged, 0 files removed, 0 files unresolved
|