OfficeInstall/push.sh

22 lines
337 B
Bash
Raw Normal View History

2024-02-22 10:35:56 -05:00
#!/bin/bash
# set the STRING variable
STRING="Hello World!"
# print the contents of the variable on screen
echo $STRING
echo Changing Directory...
cd /x/foundry/Data
echo Adding Files...
git add -A
echo Committing changes to Foundry...
git commit -a -m "Daily Commit"
echo Done!
echo Pushing Changes to Repo...
git push
echo Done!