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
{{ message }}
This repository was archived by the owner on Nov 9, 2017. It is now read-only.
When you use GIT_ASKPASS to enter passwords, it never works because function _read_password from Prompt.pm is buggy. Indeed, this line is supposed to remove \r\n:
$password =~ s/[\012\015]//; # \n\r
But a 'g' is missing so \r\n is never removed. The correct line is
$password =~ s/[\012\015]//g; # \n\r
The issue can be reproduced using git-gui--askpass.
The text was updated successfully, but these errors were encountered:
When you use GIT_ASKPASS to enter passwords, it never works because function _read_password from Prompt.pm is buggy. Indeed, this line is supposed to remove \r\n:
But a 'g' is missing so \r\n is never removed. The correct line is
The issue can be reproduced using git-gui--askpass.
The text was updated successfully, but these errors were encountered: