Charles
Charles

Reputation: 1844

Why do I get a "Fatal: Http Request Exception encountered" even upon doing a successful push?

Why does the Fatal Http Request Exception encountered message occur even after having a successful git push as shown below

C:\xampp\htdocs\pick2get\pic2get_>git push -u origin master
Fatal: HttpRequestException encountered.
Username for 'https://github.com': CharlesNjau
Password for 'https://[email protected]':
Counting objects: 219, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (209/209), done.
Writing objects: 38% (84/219), 984.00 KiB | 24.00 KiB/s

Upvotes: 1

Views: 1956

Answers (1)

ErniBrown
ErniBrown

Reputation: 1372

Usually this is caused by a mismatch of TLS: depending on your configuration you may want to update your account manager or check visual studio extensions updates.

Have a look here

Upvotes: 2

Related Questions