- 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
Python vs IPython: recommend %cd, %env over !cd, !export...
Python vs IPython: recommend %cd, %env over !cd, !export
The quick overview mentioned `!cd DIR` among examples of shell
commands one might use —but that doesn't work as user would hope
(can only affect commands in same ! e.g. `!cd /; pwd`).
That's not as bad now that `!cd` prints a warning,
but IMHO better to provide the right mental model up front.
=> Replaced that with minimal motivation why `!cd` and `!export` can't work,
recommending some %magic alternatives;
moved it out of examples to not distract, and right before Magics section.