Update skel

This commit is contained in:
David Tomaschik
2026-04-14 10:27:17 -07:00
parent 202d871a59
commit 1804357162
2 changed files with 10 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
[alias]
commit-assumed = "!f() { \
file=\"$1\"; \
shift; \
git update-index --no-assume-unchanged \"$file\" && \
git add \"$file\" && \
git commit \"$@\" && \
git update-index --assume-unchanged \"$file\"; \
}; f"