fetch: drop force arg for commit (
issue1752)
This appears to be unneeded and forces fetch commits to examine clean files.
Fix
issue1679: path reconstruction in hgwebdir was mangling things badly
do not translate commit messages
It is not very helpful to have 'Added tag %s for changeset %s' and
similar messages translated into different languages when people work
together using different locales.
We now use English strings without support for translations. If
needed, the user can still supply a custom string for most commands.
hgignore.5: expanded description
- explain that .hgignore must be created manually
- hint that it is typically put under revision control
graphlog: fix incoming with local repo (
issue1731)
Fix test-demandimport and test-trusted under Windows
The Windows-only wrapper around stdout is causing both of these tests to fail.
test-demandimport fails because it tries to print repr(sys.stdout). Use
stderr instead since that is not wrapped.
test-trusted fails because the wrapper doesn't handle softspace and an
unexpected extra space gets printed.