mirror of
https://github.com/Matir/skel.git
synced 2026-05-26 05:29:09 -07:00
10 lines
266 B
Plaintext
10 lines
266 B
Plaintext
[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"
|