Skip to content

Commit

Permalink
fix: 🐛 lint on amend
Browse files Browse the repository at this point in the history
  • Loading branch information
tomgrv committed Sep 17, 2024
1 parent 7076347 commit a4aecf5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gitutils/alias.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
"ignore": "grep -qxF \"$1\" .gitignore || echo \"$1\" >>.gitignore && git rm --cached \"$1\" 2>/dev/null",
"undo": "git reset --soft HEAD^ --",
"crush": "git amend --no-verify && git push --force",
"amend": "git diff-index --cached --quiet HEAD || git commit --amend --no-verify -C HEAD",
"amend": "git diff-index --cached --quiet HEAD || git commit --amend -C HEAD",
"edit": "git commit --amend --edit",
"continue": "git checkout -- . && git rebase --continue",
"co": "git commit -m \"$1\"",
"go": "git commit -m \"$1\" --all",
"beta": "git release-beta",
"prod": "git release-prod",
"hfix": "git release-hotfix"
}
}

0 comments on commit a4aecf5

Please sign in to comment.