Techbypass always tries to help you to learn about recent vulnerabilities and exploitations.

Learn and share your security findings and help others to secure their digital assets.

Need any help mail to [email protected]

0 votes
How can I solve the problem "unable to get local issuer certificate" using git on Windows with a self-signed certificate?
by (169 points)

1 Answer

0 votes

Open Git Bash and run the command and disable SSL verification completely.

git config --global http.sslVerify false

by (271 points)
...