Last active
February 21, 2019 14:56
-
-
Save lacostenycoder/7af1be3bb1028c8abf6b1770e3ec7cf2 to your computer and use it in GitHub Desktop.
Easily checkout local git branches with a ruby script
This file contains 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 | |
branches = `git branch --sort=committerdate | awk '{print $1}'`.split("\n").reject{|l| l == '*'} | |
branches.each_with_index{|b, i| puts "#{i < 10 ? ' ' : ''}""#{i} - #{b}" } | |
puts "\n" | |
print 'type branch number: ' | |
target_num = gets.chomp | |
unless target_num.length == 0 | |
system("git checkout #{branches[target_num.to_i]}") | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To make this a no-brainer, run a
chmod +x
on the file and add an aliasalias co="path to script"