Skip to content

Instantly share code, notes, and snippets.

@brendanjcaffrey
Created December 25, 2012 17:02
Show Gist options
  • Save brendanjcaffrey/4374220 to your computer and use it in GitHub Desktop.
Save brendanjcaffrey/4374220 to your computer and use it in GitHub Desktop.
Updates vim plugins that are installed using pathogen by executing `git pull` in every plugin directory.
#!/bin/bash
cd ~/.vim/bundle
for F in $(find . -type d -d 1) ; do
cd ~/.vim/bundle/$F
git pull
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment