- 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
Fix: openssh_tunnel did not parse port in `server`...
Fix: openssh_tunnel did not parse port in `server`
Despite what the docstring of openssh_tunnel mentioned, it did not parse
username in port in the `server` argument. This patch fixes the problem
so that ipython client can connect to the server over port-forwarded ssh
connection. For example, you can connect the client by the following
code now::
c = Client('/path/to/ipcontroller-client.json',
sshserver='me@localhost:1234')