Skip to content

Instantly share code, notes, and snippets.

@joerichsen
Created October 21, 2008 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • 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