23 lines
474 B
Bash
Executable File
23 lines
474 B
Bash
Executable File
#!/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
|