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
I have a git repo that needs a key, if I don't enter the password for the key, when using Repo.clone_from or Repo.pull GitCommandError isn't raised.
File "/home/stu/.virtualenvs/ng/local/lib/python3.5/site-packages/git/cmd.py", line 319, in wait
raise GitCommandError(self.args, status, self.proc.stderr.read())
ValueError: read of closed file
^ which is because proc.stderr is closed at this point.
To reproduce, clone from a git repo using a key + a uri like
I have a git repo that needs a key, if I don't enter the password for the key, when using Repo.clone_from or Repo.pull GitCommandError isn't raised.
^ which is because proc.stderr is closed at this point.
To reproduce, clone from a git repo using a key + a uri like
[email protected]:blah/blah.git
Then when it prompts you to unlock the key, just press enter (not unlocking) it - similar thing for pull as well.
The text was updated successfully, but these errors were encountered: