Closed salcode closed 3 years ago
Currently, the alias is defined as
recover-rejected-commit = "!f() { git "commit -e --file=$(git rev-parse --git-dir)/COMMIT_EDITMSG"; }; f"
however the inner quotes (") are not needed. The following works instead
"
recover-rejected-commit = "!f() { git commit -e --file=$(git rev-parse --git-dir)/COMMIT_EDITMSG; }; f"
This issue was opened on the incorrect repo.
The issue on the correct repo is https://github.com/ironcodestudio/ironcode-git-enhancements/issues/132
Currently, the alias is defined as
however the inner quotes (
"
) are not needed. The following works instead