Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 335 Bytes

File metadata and controls

16 lines (12 loc) · 335 Bytes

Github Selector

A small tool that presents a list of repositories using the fzf fuzzy matcher and then clones the selected one

Setup

  1. brew install fzf
  2. brew install git
  3. make
  4. Add a function to your bashrc or zshrc
gsa() {
    cd "$($HOME/go/src/github.com/ctompkinson/github-selector/github_selector)"
}