Skip to content

Instantly share code, notes, and snippets.

@vladimiroff
Created July 21, 2011 07:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vladimiroff/1096728 to your computer and use it in GitHub Desktop.
Save vladimiroff/1096728 to your computer and use it in GitHub Desktop.
Handy shell script for keeping my bundles in vim up-to date
#!/bin/sh
cd $HOME/.vim/bundle/
for plugin in *; do
cd $plugin
git checkout master
git pull origin master
cd ..
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment