Skip to content

Instantly share code, notes, and snippets.

@joerichsen
Created October 21, 2008 13:35
Show Gist options
  • Save joerichsen/18304 to your computer and use it in GitHub Desktop.
Save joerichsen/18304 to your computer and use it in GitHub Desktop.
git clone git://github.com/lachie/appjour.git
git clone git://github.com/giraffesoft/blank.git
git clone git://github.com/joshuaclayton/blueprint-css.git
git clone git://github.com/fudgestudios/bort.git
git clone git://github.com/jamis/capistrano.git
git clone git://github.com/kesor/crowd.git
git clone git://github.com/tenderlove/dejour.git
git clone git://github.com/thoughtbot/factory_girl.git
git clone git://github.com/fiveruns/fiveruns_tuneup.git
git clone git://github.com/evanphx/gemjour.git
git clone git://github.com/nogoth/gitjour.git
git clone git://github.com/nex3/haml.git
git clone git://github.com/arunthampi/injour.git
git clone git://github.com/jesperronn/jquery-round-corners.git
git clone git://github.com/JackDanger/jquery.git
git clone git://github.com/wycats/merb-core.git
git clone git://github.com/wycats/merb-more.git
git clone git://github.com/wycats/merb-plugins.git
git clone git://github.com/alloy/passengerpane.git
git clone git://github.com/nogoth/pastejour.git
git clone git://github.com/auser/poolparty.git
git clone git://github.com/lak/puppet-rails.git
git clone git://github.com/lak/puppet.git
git clone git://github.com/rails/rails.git
git clone git://github.com/technoweenie/restful-authentication.git
git clone git://github.com/martinjandrews/roodi.git
git clone git://github.com/dchelimsky/rspec-rails.git
git clone git://github.com/dchelimsky/rspec.git
git clone git://github.com/relevance/rubycas-client.git
git clone git://github.com/relevance/rubycas-server.git
git clone git://github.com/larssg/score-keeper.git
git clone git://github.com/thoughtbot/shoulda.git
git clone git://github.com/spot-us/spot-us.git
git clone git://github.com/lachie/starjour.git
git clone git://github.com/freelancing-god/thinking-sphinx.git
git clone git://github.com/jarkko/unobtrusive_book_code.git
git clone git://github.com/mislav/will_paginate.git
#!/usr/bin/ruby
Dir.foreach('.') do |dir|
if (File.directory?(dir) && File.exists?("#{dir}/.git"))
puts "Updating #{dir}"
`pushd #{dir}; git pull; popd`
else
puts "Skipping #{dir}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment