dispatch: add repo to the request
allows callers of dispatch.dispatch to pass in
an initialized repo object to be used.
-R/--repository overrides the request repo.
Added signature for changeset
733af5d9f6b2
Added tag 1.8.4 for changeset
733af5d9f6b2
subrepo: make stdin for svn a pipe for non-interactive use (
issue2759)
This certainly can't hurt, so go ahead and do it, potentially along
with --non-interactive if that flag is safe for the given subcommand.
subrepo: svn abort now depends on exit code (
issue2833)
httprepo: send URL redirection notices to stderr (
issue2828)
httprepo: proper handling of invalid responses without content-type (
issue2019)
This can currently be tested on http://sf.net/
strip: make it clear that --force discards changes (
issue310)
tags: catch more corruption during cache parsing (
issue2779)
localrepo: don't add deleted files to list of modified/added files (
issue2761)
If a file is deleted (rm, not 'hg rm') from the working dir
an attempt to run 'hg diff -r X', with the file being present in X will
cause an abort.
We didn't check if the file has been deleted from the working dir
and later on tried to open it to compare with the one from X, causing the abort.
This fix adds that check. Consequently, no output will be returned.