diff options
| author | Christoph Schlosser <christoph@linux.com> | 2025-08-23 21:20:32 +0200 |
|---|---|---|
| committer | Christoph Schlosser <christoph@linux.com> | 2025-08-23 21:20:32 +0200 |
| commit | e3269aa41fd9489ddc22ddc6d17d5832b99c5008 (patch) | |
| tree | e32e2554de3fd7cd29ecde2427f7c3b1d65439fe | |
| parent | 9b9f52f8b8646c0355eb88ef51883b4fae2cc272 (diff) | |
| download | git2hugo-e3269aa41fd9489ddc22ddc6d17d5832b99c5008.tar.gz | |
mise: Forward all args passed into git/co.sh to git commit
| -rwxr-xr-x | .mise-tasks/co.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.mise-tasks/co.sh b/.mise-tasks/co.sh index 262fa84..67e256a 100755 --- a/.mise-tasks/co.sh +++ b/.mise-tasks/co.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash #MISE description="Stage and commit the whole working dir" -git add . && git commit +git add . && git commit "$@" |