Skip to content
Discussion options

You must be logged in to vote

This error means Git can't authenticate with GitHub using SSH. Here are the solutions:
Quick Fix: Switch to HTTPS
If you want to get pushing right away, switch your remote URL to HTTPS:
bashgit remote set-url origin https://github.com/YOUR-USERNAME/Video-Audio-Face-Emotion-Recognition.git
Replace YOUR-USERNAME with your actual GitHub username. Then try pushing again - it'll prompt for your GitHub credentials.
Or: Fix SSH Authentication
If you prefer SSH, you need to set up your SSH key:

  1. Check if you have an SSH key:
    bashls -al ~/.ssh
    Look for files like id_rsa.pub or id_ed25519.pub.
  2. If no key exists, generate one:
    bashssh-keygen -t ed25519 -C "[email protected]"
    Press Enter to accep…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by Boruto-Siz0112
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants