Skip to content

Instantly share code, notes, and snippets.

@vladimiroff
vladimiroff / bundle_updater_for_vim
Created July 21, 2011 07:26
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