fix ln local bin

This commit is contained in:
2026-04-03 21:23:49 +09:00
parent 42225e6793
commit 2ab3ea5482
3 changed files with 80 additions and 3 deletions

View File

@@ -1 +0,0 @@
/Users/syui/dotfiles/.local/bin/git-ci

10
.local/bin/git-ci Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
if [ $# -eq 0 ]; then
git commit -v
else
if [ "$1" = "--amend" ]; then
git commit -v --amend
else
git commit -m "$*"
fi
fi