- Use '/' key to quickly access this field.
- Enter a name of repository, or repository group for quick search.
- Prefix query to allow special search:
user:admin, to search for usernames, always global
user_group:devops, to search for user groups, always global
pr:303, to search for pull request number, title, or description, always global
commit:efced4, to search for commits, scoped to repositories or groups
file:models.py, to search for file paths, scoped to repositories or groups
For advanced full text search visit: repository search
rhg: avoid calculating copies for status --no-status...
rhg: avoid calculating copies for status --no-status
This changes how rhg status avoids printing copies with --no-status.
Originally 668a871454e8 added a check right before printing copies.
This changes it to match Python and check it earlier by defining
`list_copies = ... && !no_status`. This makes no difference now, but
when we implement --rev --rev --copies it will ensure we don't do
wasteful copy tracing when it's not going to be printed.