You need to authenticate when you push or pull code to/from GitHub. GitHub no longer allows password-based authentication for security reasons. Instead, you have two options:
1️⃣ HTTPS (Using a Personal Access Token - PAT)
2️⃣ SSH (Using an SSH Key)
🔹 How It Works:
Now, when you clone, pull, or push, GitHub will ask for credentials.
When cloning a repo:
git clone <https://github.com/your-username/repository.git>
Git will ask for your GitHub username and password.
💡 To avoid entering the token every time, you can cache it:
git config --global credential.helper osxkeychain # macOS
git config --global credential.helper cache # Linux