Skip to content

Instantly share code, notes, and snippets.

@fartbagxp
Last active October 19, 2017 15:17
Show Gist options
  • Save fartbagxp/cda7cc488683ad1a83177859c4be6600 to your computer and use it in GitHub Desktop.
Save fartbagxp/cda7cc488683ad1a83177859c4be6600 to your computer and use it in GitHub Desktop.
Git pull local directories
#!/bin/bash
for i in */.git; do ( echo $i; cd $i/..; git pull; ); done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment