mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2025-02-15 09:34:04 +08:00
![Stephen M. Coakley](/assets/img/avatar_default.png)
- Copy and improve help text, and convert it to AsciiDoc files - Evaluate commands dynamically
28 lines
671 B
Plaintext
28 lines
671 B
Plaintext
Manage user-installed package repositories.
|
|
|
|
== USAGE
|
|
omf repositories [list | ls]
|
|
omf repositories add <url> [<branch>]
|
|
omf repositories (rm | remove) <url> [<branch>]
|
|
|
|
== DESCRIPTION
|
|
Package repositories are where packages come from used by commands like omf install. By default the official repository is always installed and available.
|
|
|
|
== SUBCOMMANDS
|
|
list, ls::
|
|
List installed repositories.
|
|
|
|
add::
|
|
Add a package repository.
|
|
|
|
remove, rm::
|
|
Remove a package repository.
|
|
|
|
== EXAMPLES
|
|
omf repositories
|
|
omf repositories add https://github.com/vendor/fish-packages
|
|
omf repositories rm https://github.com/vendor/fish-packages master
|
|
|
|
== ALIASES
|
|
*omf repo*
|