Add update.sh

This commit is contained in:
netravnen 2018-12-10 14:31:23 +01:00 committed by Christoffer
parent f6e3b8b457
commit 12ad96973d

5
update.sh Normal file
View file

@ -0,0 +1,5 @@
#!/bin/bash
# Push repository to every remote configured
for REMOTE in $(git remote | paste -sd -) ; do git ps $REMOTE master ; done