Ввести регулярную публикацию отладочной версии #6

Merged
kornerr merged 45 commits from dbg into main 2025-11-12 04:39:21 +01:00
Showing only changes of commit ab8755955c - Show all commits

22
dbg.clone Executable file
View File

@@ -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