Offer git commit --amend after previous git commit (#764)

This commit is contained in:
David Hart
2018-01-05 21:24:43 +00:00
committed by Joseph Frazier
parent 7b10a86267
commit 797ca1c564
3 changed files with 37 additions and 0 deletions
+1
View File
@@ -187,6 +187,7 @@ using the matched rule and runs it. Rules enabled by default are as follows:
* `git_branch_exists` – offers `git branch -d foo`, `git branch -D foo` or `git checkout foo` when creating a branch that already exists;
* `git_branch_list` – catches `git branch list` in place of `git branch` and removes created branch;
* `git_checkout` – fixes branch name or creates new branch;
* `git_commit_amend` – offers `git commit --amend` after previous commit;
* `git_diff_no_index` – adds `--no-index` to previous `git diff` on untracked files;
* `git_diff_staged` – adds `--staged` to previous `git diff` with unexpected output;
* `git_fix_stash` – fixes `git stash` commands (misspelled subcommand and missing `save`);