]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/repo/README.md
initial
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / repo / README.md
1 # repo plugin
2
3 This plugin mainly adds some aliases and support for automatic completion for
4 the [repo command line tool](https://code.google.com/p/git-repo/).
5
6 To use it, add `repo` to the plugins array in your zshrc file:
7
8 ```zsh
9 plugins=(... repo)
10 ```
11
12 ## Aliases
13
14 | Alias   | Command                                |
15 |---------|----------------------------------------|
16 | `r`     | `repo`                                 |
17 | `rra`   | `repo rebase --auto-stash`             |
18 | `rs`    | `repo sync`                            |
19 | `rsrra` | `repo sync ; repo rebase --auto-stash` |
20 | `ru`    | `repo upload`                          |
21 | `rst`   | `repo status`                          |
22 | `rsto`  | `repo status -o`                       |
23 | `rfa`   | `repo forall -c`                       |
24 | `rfap`  | `repo forall -p -c`                    |
25 | `rinf`  | `repo info`                            |