2021-06-02 08:34:18 +02:00
|
|
|
#!/usr/bin/env bash
|
2020-11-26 07:44:59 +01:00
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
if [ ! -d "$HOME/GitProjects" ]; then
|
|
|
|
mkdir "$HOME/GitProjects"
|
|
|
|
fi
|
|
|
|
|
|
|
|
WORKPATH="$HOME/GitProjects"
|
|
|
|
|
2022-06-30 15:00:13 +02:00
|
|
|
readarray -t dirs < <(find "$WORKPATH" -mindepth 1 -maxdepth 1 -type d -printf '%P\n')
|
|
|
|
|
|
|
|
for dir in "${dirs[@]}"; do
|
|
|
|
# go into GitProjects directory
|
|
|
|
cd "$WORKPATH"
|
|
|
|
# output directory you're currently working on
|
|
|
|
printf "Working on ${dir}\n"
|
|
|
|
# change into that directory
|
|
|
|
cd "$dir"
|
|
|
|
# try to check out master or main branch
|
|
|
|
git checkout -q master \
|
|
|
|
|| git checkout -q main
|
|
|
|
git fetch --all
|
2022-06-30 15:01:42 +02:00
|
|
|
git pull
|
2022-06-30 15:00:13 +02:00
|
|
|
done
|
2021-03-07 16:03:39 +01:00
|
|
|
|
2020-11-26 07:44:59 +01:00
|
|
|
exit 0
|