A git command extension for switching git branches more efficiently.
Interactively switch branches or fuzzy search for that forgotten branch name.
All powered by the speed ⚡️ of rust 🦀.
If you have Rust installed (using the recommended rustup installation method) then you can install the binary from the crate using cargo:
sh
cargo install git-smart-checkout
For Homebrew users, you can install the binary using the following command:
sh
brew tap craciuncezar/tap
brew install git-smart-checkout
You can also install the binary directly from GitHub Releases
sh
curl -sSL https://github.com/craciuncezar/git-smart-checkout/releases/download/v0.1.0/git-smart-checkout -o /usr/local/bin/git-smart-checkout && chmod +x /usr/local/bin/git-smart-checkout
To save typing time you can use a regular git alias for git smart-checkout
. The following command will add the alias git sc
to your git config, however feel free to use whatever works best for you:
sh
git config --global alias.sc smart-checkout