0

In a terminal, when I try to

$ git clone <rep>

this happens

enter image description here

It's disturbing when you don't expect it.

Why does this happen, and how do I get rid of it?

Clay Bridges
  • 11,602
  • 10
  • 68
  • 118

1 Answers1

0

git can use whatever is pointed to by the envariable SSH_ASKPASS (cf. here) as a helper when it needs a password, and something in GitX (specifically, GitX-dev) causes it to write this variable to use a tool internal to the GitX.app bundle.

To get rid of it in bash

unset SSH_ASKPASS
Clay Bridges
  • 11,602
  • 10
  • 68
  • 118