From 9fd22b6e5c4bb1aa1b3975da8d4d436664a0a03d Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Mon, 16 Jan 2012 00:48:25 -0500 Subject: [PATCH] added git support. --- scripts/rev_control/update_these.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/scripts/rev_control/update_these.sh b/scripts/rev_control/update_these.sh index bd7b1c1f..afd79578 100644 --- a/scripts/rev_control/update_these.sh +++ b/scripts/rev_control/update_these.sh @@ -1,13 +1,15 @@ #!/bin/bash -# a simple script for updating a set of folders on a usb stick from -# subversion. currently just runs with no parameters and expects to -# get all archives from wherever the files originally came from. +# a simple script for updating a set of folders on a usb stick from subversion or git. currently +# just runs with no parameters and expects to get all archives from wherever the files originally +# came from. for i in * ; do if [ -d "$i" ]; then pushd $i + # only update if we see a repository living there. if [ -d ".svn" ]; then - # only update if we see a repository living here. svn update . + elif [ -d ".git" ]; then + git pull . fi popd fi -- 2.34.1