my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
904 B

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