0

I created Android Project when i trying to push the project from CMD prompt it show this message

fatal: unable to access 'https://github.com/<userName>/<project_name>/': SSL certificate problem: self signed certificate in certificate chain

how can i resolve this error and not able to upload project

Jonathon Reinhart
  • 132,704
  • 33
  • 254
  • 328
Shivam Sharma
  • 290
  • 2
  • 14

1 Answers1

2

I resolve the issue using this Commands in Git:

1) Remove the origin

git remote rm origin

2) Add again the remote origin

git remote add origin https://github.com/<userName>/<project_name>.git

3) Final push your project using Following Command:-

git push -u origin master

Then git ask your username and password fill it and your project upload successfully on Github.

Hope its helpful

Shivam Sharma
  • 290
  • 2
  • 14