Skip to content

Instantly share code, notes, and snippets.

@lacostenycoder
Last active February 21, 2019 14:56
Show Gist options
  • Save lacostenycoder/7af1be3bb1028c8abf6b1770e3ec7cf2 to your computer and use it in GitHub Desktop.
Save lacostenycoder/7af1be3bb1028c8abf6b1770e3ec7cf2 to your computer and use it in GitHub Desktop.
Easily checkout local git branches with a ruby script
#!/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
@lacostenycoder
Copy link
Author

lacostenycoder commented Feb 12, 2019

To make this a no-brainer, run a chmod +x on the file and add an alias alias co="path to script"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment