DSCAnalysisTool/push.sh

22 lines
543 B
Bash
Raw Normal View History

2025-03-05 09:33:46 +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