diff --git a/fetch.sh b/fetch.sh new file mode 100644 index 000000000..37ea97e22 --- /dev/null +++ b/fetch.sh @@ -0,0 +1,8 @@ +#!/bin/bash +git fetch +for i in */; do + cd $i + git fetch + cd .. +done + diff --git a/pull.sh b/pull.sh new file mode 100644 index 000000000..1976c05d5 --- /dev/null +++ b/pull.sh @@ -0,0 +1,8 @@ +#!/bin/bash +git pull +for i in */; do + cd $i + git pull + cd .. +done +