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.

24 lines
769 B

3 years ago
  1. # git lfs plugin
  2. The git lfs plugin provides [aliases](#aliases) and [functions](#functions) for [git-lfs](https://github.com/git-lfs/git-lfs).
  3. To use it, add `git-lfs` to the plugins array in your zshrc file:
  4. ```zsh
  5. plugins=(... git-lfs)
  6. ```
  7. ## Aliases
  8. | Alias | Command |
  9. | :------- | :---------------------------------- |
  10. | `glfsi` | `git lfs install` |
  11. | `glfst` | `git lfs track` |
  12. | `glfsls` | `git lfs ls-files` |
  13. | `glfsmi` | `git lfs migrate import --include=` |
  14. ## Functions
  15. | Function | Command |
  16. | :------- | :---------------------------------------------- |
  17. | `gplfs` | `git lfs push origin "$(current_branch)" --all` |