diff options
| author | Christoph Schlosser <christoph@linux.com> | 2025-08-23 20:51:34 +0200 |
|---|---|---|
| committer | Christoph Schlosser <christoph@linux.com> | 2025-08-23 20:51:34 +0200 |
| commit | 9b9f52f8b8646c0355eb88ef51883b4fae2cc272 (patch) | |
| tree | a4500d7fb3a1029201b775b54d627edcfcbd03dd | |
| parent | fb60204b9fa1b7e29595cca3aa3d391ad0e6a0e6 (diff) | |
| download | git2hugo-9b9f52f8b8646c0355eb88ef51883b4fae2cc272.tar.gz | |
mise: restore git tasks
| -rwxr-xr-x | .mise-tasks/co.sh | 3 | ||||
| -rwxr-xr-x | .mise-tasks/ps.sh | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/.mise-tasks/co.sh b/.mise-tasks/co.sh new file mode 100755 index 0000000..262fa84 --- /dev/null +++ b/.mise-tasks/co.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash +#MISE description="Stage and commit the whole working dir" +git add . && git commit diff --git a/.mise-tasks/ps.sh b/.mise-tasks/ps.sh new file mode 100755 index 0000000..cf142f4 --- /dev/null +++ b/.mise-tasks/ps.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash +#MISE description="Stage and amend the whole working dir" +git add . && git commit --amend --no-edit |