Skip to content

jordwest/prj

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

prj

prj is a command line tool that helps you jump between your local git repositories.

Features

  • Fast fuzzy find your project thanks to fuzzy-matcher
  • Displays git information from each project:
    • Last commit summary
    • Currently checked out branch
    • Pending/uncommitted changes

Demo

screenshot of demo

Installation

MacOS (With Homebrew)

brew tap jordwest/homebrew-tools
brew install prj

All platforms

Note openssl must be installed.

This hasn't yet been tested on other platforms, but binaries are available for Windows, Linux and MacOS.

Check the Releases tab for the latest build.

Compiling from source

First install Rust, then run:

cargo install prj

Setup

Set the root to search projects with:

prj configure

This will create a .prj file in your home directory containing the configuration in TOML format.

Usage

prj list

Running prj list will show an interactive fuzzy search.

Start typing to search the list. Projects marked with * and highlighted in red are projects with uncommitted changes.

<TAB> cycles through the repository information displayed in the second column.

<ESC> cancels and exits.

When a project is selected, the path to the project will be sent to stdout. You can cd into the selected directory with cd $(prj list), however the recommended way to jump to projects is to add a function to your .bashrc or .profile:

function p() {
	local dir
	dir=$(prj list) && cd $dir
}

Once you've added this function, reopen your terminal and run p from anywhere.

Roadmap

About

Navigate between local repos quickly with fuzzy find and git summaries

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages