From 36191396b215575ff62ec1e910ad850bf75af3ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Br=C3=BCckner=20Martin=20=28PSI=29?= Date: Fri, 13 Mar 2015 13:35:40 +0100 Subject: [PATCH] added pull.sh and fetch.sh --- fetch.sh | 8 ++++++++ pull.sh | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 fetch.sh create mode 100644 pull.sh 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 +