I'm trying to upload a project on Github using the remote command And I got this:
fatal: Une erreur s'est produite lors de l'envoi de la demande. fatal: La demande a été abandonnée : Impossible de créer un canal sécurisé SSL/TLS. Username for 'https://github.com': meriam-hamdaoui Password for 'https://meriam-hamdaoui@github.com': remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information. fatal: Authentication failed for 'https://github.com/meriam-hamdaoui/testing-again.git/'
I looked on Google so I update my system I activeted TLS1.2 then I excuted those two lines:
$unset SSH_ASKPASS
$ git push -u origin main
I got "Authentication Succeeded" on a web page but still got this :
fatal: Une erreur s'est produite lors de l'envoi de la demande. fatal: La demande a été abandonnée : Impossible de créer un canal sécurisé SSL/TLS. Username for 'https://github.com': meriam-hamdaoui Password for 'https://meriam-hamdaoui@github.com': remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information. fatal: Authentication failed for 'https://github.com/meriam-hamdaoui/testing-again.git/'
Can anyone explain to me how to fix this please??