Created
February 4, 2019 15:39
-
-
Save jbodah/de5473018ced3c4d2f3f277b2e86c610 to your computer and use it in GitHub Desktop.
git-cc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env ruby | |
require 'tty/prompt' | |
require 'tty/prompt/vim' | |
prompt = TTY::Prompt.new | |
branches = `git for-each-ref --sort=-committerdate --count=20 --format='%(refname:short)' refs/heads/`.each_line.map(&:rstrip) | |
branch = prompt.select("Choose a branch:", branches) | |
exec "git checkout #{branch}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment