This introduces a new flag to pull command --confirm and also a config option
named pull.confirm which if used will prompt user describing changes which are
pulled and asking whether to accept them or not.
Details
Details
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Automatic diff as part of commit; lint not applicable. - Unit
Automatic diff as part of commit; unit tests not applicable.
Event Timeline
mercurial/exchange.py | ||
---|---|---|
1810 | I think this should probably respect HGPLAIN. Thoughts? (Note that doing so will require some reworking, because you probably want HGPLAIN=1 hg pull --confirm to confirm, and it wouldn't if you just respect HGPLAIN on this line.) |
mercurial/exchange.py | ||
---|---|---|
1810 | From IRC discussion, HGPLAIN should result in the config option to be ignored, but the command line flag to be enforced. |
I think this should probably respect HGPLAIN. Thoughts?
(Note that doing so will require some reworking, because you probably want HGPLAIN=1 hg pull --confirm to confirm, and it wouldn't if you just respect HGPLAIN on this line.)