Initial check-in

This commit is contained in:
Duc
2025-03-14 14:27:39 -07:00
parent 949a617ff1
commit 4c069daaba
14 changed files with 795 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
#!/bin/bash
length=${#1};
if [[ $length -eq 0 ]]
then
echo "Please specify a tracked file to ignore";
exit 1
fi
git update-index --skip-worktree $1

View File

@@ -0,0 +1,3 @@
#!/bin/bash
git ls-tree -r main --name-only

View File

@@ -0,0 +1,11 @@
#!/bin/bash
length=${#1};
if [[ $length -eq 0 ]]
then
echo "Please specify a tracked file to ignore";
exit 1
fi
git update-index --no-skip-worktree $1