diff options
| -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 |