Skip to content

Latest commit

 

History

History
61 lines (38 loc) · 1.1 KB

README.md

File metadata and controls

61 lines (38 loc) · 1.1 KB

zsh-git-lfs

This plugin adds short aliases for the git-lfs commands.

Usage

Without typing full git-lfs commands in console, like:

git lfs track "*.psd"

there is more convenient alias:

glft "*.psd" 

Installation

zplug

  1. Add the following to your .zshrc:

    zplug "nekofar/zsh-git-lfs"
  2. Start a new terminal session.

Antigen

  1. Add the following to your .zshrc:

    antigen bundle nekofar/zsh-git-lfs
  2. Start a new terminal session.

Oh My Zsh

  1. Clone this repository into $ZSH_CUSTOM/plugins (by default ~/.oh-my-zsh/custom/plugins)

    git clone https://github.com/nekofar/zsh-git-lfs \
      ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-git-lfs
  2. Add the plugin to the list of plugins for Oh My Zsh to load (inside ~/.zshrc):

    plugins=( [plugins...] zsh-git-lfs)
  3. Start a new terminal session.

Requirements

  1. The git-lfs tool has to be installed separately.