You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the interpreter-exclusive git command, quoted args are split on spaces, instead of being preserved.
Expectation: git commit -am "chore: update example password"
(expands to ["git" "commit" "-am" "chore: update example password"]) [some_branch a1b2c3d] chore: Update Example Password base/example/password +- 1
Reality: git commit -am "chore: update example password"
(expands to ["git" "commit" "-am" "chore:" "update" "example" "password"]) fatal: paths 'update ...' with -a does not make sense
The text was updated successfully, but these errors were encountered:
When using the interpreter-exclusive
git
command, quoted args are split on spaces, instead of being preserved.Expectation:
git commit -am "chore: update example password"
(expands to ["git" "commit" "-am" "chore: update example password"])
[some_branch a1b2c3d] chore: Update Example Password
base/example/password +- 1
Reality:
git commit -am "chore: update example password"
(expands to ["git" "commit" "-am" "chore:" "update" "example" "password"])
fatal: paths 'update ...' with -a does not make sense
The text was updated successfully, but these errors were encountered: