(20241010) With some shell scripts.

This commit is contained in:
2024-10-10 12:06:13 +05:30
parent e858118467
commit 4445bceac0
11 changed files with 127 additions and 5 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/bin/bash
# NOTES:
# Run this on the development machine.
# NOT to be used in a collaborative environment:
# Accept a comment from the terminal:
echo "Comment: "
read -r COMMENT
# Add all the modified files to the intended commit:
git add .
echo "File added."
# Make the commit:
git commit -m "$COMMENT"
echo "Commit done."
# Push th commit to git:
git push -u https://wtt.ditscentre.in/ditscentre/api_internal.git master
echo "Attempt done. Exiting."