Guest User

Untitled

a guest
Nov 9th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. $ git config --global core.askPass ""
  2.  
  3. $ git -c core.askPass="" clone <https_url>
  4.  
  5. [credential "https://example.com"]
  6. username = me
  7.  
  8. unset SSH_ASKPASS
  9.  
  10. env | grep GIT
  11. git config --get core.askPass
  12. env | grep SSH
  13.  
  14. SSH_ASKPASS=/mingw64/libexec/git-core/git-gui--askpass`.
  15.  
  16. git config --global --unset credential.helper
  17.  
  18. git config --system --unset credential.helper
Add Comment
Please, Sign In to add comment