Btw as you write in README.md, on Windows the Commit and Push function doesn't work correctly when a commit message contains space(s) as below.
> git commit -m 'Hello Hello'
error: pathspec 'Hello'' did not match any file(s) known to git
This is because the single quotation is used in default commit command, which is git commit -m '{msg}'. We must use the double quotation on the Windows command prompt. Please refer the attached image.
Thank you for awesome extension.
Btw as you write in
README.md
, on Windows theCommit and Push
function doesn't work correctly when a commit message contains space(s) as below.This is because the single quotation is used in default commit command, which is
git commit -m '{msg}'
. We must use the double quotation on the Windows command prompt. Please refer the attached image.I fixed this.