diff --git a/dbg.clone b/dbg.clone new file mode 100755 index 0000000..b0487ec --- /dev/null +++ b/dbg.clone @@ -0,0 +1,22 @@ +#!/bin/bash +SDIR=$(cd "$(dirname "$0")" ; pwd -P) + +DST_DIR=/Users/mk/test-dist +REPO_URL=https://github.com/kornerr/ru + +# Clone since the directory does not exist +if [ ! -d "$DST_DIR" ]; then + git clone $REPO_URL $DST_DIR +fi + +# Pull the latest changes +cd $DST_DIR +git pull + +# Find out the latest branch +git branch -r --sort=-committerdate | head -n2 +branch=`git branch -r --sort=-committerdate | head -n2` +echo $branch + +# Switch to the latest branch +#git checkout $branch