spectrometer_portable/push.sh

22 lines
543 B
Bash
Raw Permalink Normal View History

2026-06-23 03:27:35 +00:00
#!/bin/bash
datetime=`date +%FT%T`
echo "-------------------------------------"
echo "git add -A"
echo "-------------------------------------"
git add -A
echo "-------------------------------------"
echo "git status"
echo "-------------------------------------"
git status
echo "-------------------------------------"
echo "git commit -m ${datetime} "
echo "-------------------------------------"
git commit -m "${datetime}"
echo "-------------------------------------"
echo "git push"
echo "-------------------------------------"
git push