Advertisement
Guest User

Untitled

a guest
Feb 10th, 2017
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. [me@home.com ~]$ ssh me@school.edu
  2. Password:
  3. [me@school.edu ~]$ passwd
  4. passwd: Changing password for me
  5. Enter existing login password:
  6. passwd: Sorry, wrong passwd
  7. Permission denied
  8. [me@school.edu ~]$ passwd me
  9. Enter existing login password:
  10. passwd: Sorry, wrong passwd
  11. Permission denied
  12. [me@school.edu ~]$ git clone https://bitbucket.org/me/a1
  13. Cloning into a1...
  14. error: SSL certificate problem, verify that the CA cert is OK. Details:
  15. error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed while accessing https://bitbucket.org/me/a1/info/refs
  16.  
  17. fatal: HTTP request failed
  18. [me@school.edu ~]$ git config --global http.sslVerify false
  19. [me@school.edu ~]$ git clone https://bitbucket.org/me/a1
  20. Cloning into a1...
  21. Username:
  22. Password:
  23. fatal: Authentication failed
  24.  
  25. [me@home.com ~]$
  26. [me@home.com ~]$ git clone https://bitbucket.org/me/a1
  27. Cloning into 'a1'...
  28. Username for https://bitbucket.org: me
  29. Password for :https://me@bitbucket.org:
  30. remote: Counting objects: ...
  31. remote: Compressing objects...
  32. remote: Total ...
  33. Unpacking...
  34. [me@home.com ~]$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement