diff --git a/GitLabCommit.sh b/GitLabCommit.sh new file mode 100755 index 0000000000000000000000000000000000000000..10323bc47bfd78733d6d78e9325636fcf61d3cf9 --- /dev/null +++ b/GitLabCommit.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +# Navigate to your Git repository directory +cd /home/dev/scripts/operatingsystem || exit + +# Add all changes to staging +git add . + +# Commit changes with a message +git commit -m "new code each ten minutes" + +# Pull the latest changes from the remote repository +git pull + +# Push the changes to the remote repository +git push \ No newline at end of file