scsd-configs/code/run_git.sh
2025-07-30 08:50:06 -04:00

14 lines
241 B
Bash
Executable File

#!/usr/bin/env bash
datestamp=`date`
cd /home/johnp/scsd-configs/git/configs
for f in `find . -type f -name "*.cfg" -or -name "*.set" | sed 's:./::' `
do
echo $f
git add $f
git commit -m "$f $datestamp"
done
git push