Skip to content

Instantly share code, notes, and snippets.

@sepgh
Created March 28, 2020 08:13
Show Gist options
  • Save sepgh/d05e169e89ea64f36e342d52f81771b6 to your computer and use it in GitHub Desktop.
Save sepgh/d05e169e89ea64f36e342d52f81771b6 to your computer and use it in GitHub Desktop.
Script that pulls/pushes all git projects in sub directories (only for ssh cloned repositories)
#!/bin/sh
### Needed packages
sudo apt install git sshpass
#!/bin/sh
for i in */.git; do ( echo $i; cd $i/..; sshpass -p "yourgitpassword" git pull; ); done
#!/bin/sh
for i in */.git; do ( echo $i; cd $i/..; sshpass -p "yourgitpassword" git push; ); done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment