(20251114) Initial Commit.

This commit is contained in:
2025-11-14 16:52:50 +05:30
commit 844625a84e
15 changed files with 299 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# When you need to re-pull the whole utils subtree because of merge conflicts:
echo "Removing existing utils subtree."
git rm -r "utils_v2"
echo "Removing existing utils directory."
rm -r "utils_v2"
git add .
git commit -m "Resetting utils subtree."
echo "Adding utils subtree from git."
git subtree add --prefix=utils_v2 https://wtt.ditscentre.in/ditscentre/utils_v2.git master --squash
echo "Attempt done. Exiting."