From cf772c9e40895eb0654db22fe4b3423283e55713 Mon Sep 17 00:00:00 2001 From: Tony Tkacik Date: Fri, 3 May 2019 12:59:21 +0200 Subject: [PATCH] Added basic status messages. Signed-off-by: Tony Tkacik --- bin/clone-or-pull | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/clone-or-pull b/bin/clone-or-pull index 6a4b3aa..58af854 100755 --- a/bin/clone-or-pull +++ b/bin/clone-or-pull @@ -8,6 +8,7 @@ BRANCH="$2"; function perform_clone_or_pull { target="$1"; + echo "Checking out working copy to remote:$target" if [! -e "$target/.git" ]; then git clone "$REPO" "$target"; fi @@ -16,6 +17,7 @@ function perform_clone_or_pull { git fetch git checkout origin/$BRANCH ) + echo "Working copy checked out"; } while read old_rew new_rew ref; do