Created
March 28, 2020 08:13
-
-
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)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
### Needed packages | |
sudo apt install git sshpass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
for i in */.git; do ( echo $i; cd $i/..; sshpass -p "yourgitpassword" git pull; ); done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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