Skip to content

Instantly share code, notes, and snippets.

@ryanb
Created June 4, 2012 06:01
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save ryanb/2866591 to your computer and use it in GitHub Desktop.
Save ryanb/2866591 to your computer and use it in GitHub Desktop.
Download source code for all RailsCasts episodes. You may want to cd into an empty directory first.
require "rubygems"
require "octokit" # gem install octokit
1.upto(5) do |page|
Octokit.repositories("railscasts", page: page, per_page: 100).each do |repo|
system "git clone git://github.com/railscasts/#{repo.name}"
end
end
@volontarian
Copy link

I've slightly changed the script to clone only repositories which have not been cloned yet in this gist https://gist.github.com/gawlista/4978183 or this Ruby project https://github.com/gawlista/railscasts-episodes if you like.

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