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