This is an archive of the discontinued Mercurial Phabricator instance.

rhg: Add support for -R and --repository command-line arguments
ClosedPublic

Authored by SimonSapin on Feb 8 2021, 5:44 PM.

Diff Detail

Repository
rHG Mercurial
Branch
default
Lint
No Linters Available
Unit
No Unit Test Coverage

Event Timeline

SimonSapin created this revision.Feb 8 2021, 5:44 PM
Alphare added a subscriber: Alphare.Feb 9 2021, 4:21 AM
Alphare added inline comments.
rust/hg-core/src/repo.rs
57

TIL that some_path.join(some_absolute_path) == some_abolute_path, which makes sense.

rust/rhg/src/commands/files.rs
57

There exists a path_to_hg_path_buf util that you should probably use here and below.

64

We should see if working_directory is the same as cwd so as to not allocate in the common path. files is a performance-sensitive command in CI/server environments.

tests/test-rhg.t
14

Just to make the same point as yesterday but publicly: this should only be printed if we're in no-fallback mode (and with a different error code). But we'll get to that later.

This revision was not accepted when it landed; it landed in state Needs Review.
This revision was automatically updated to reflect the committed changes.