Site icon ni18 Blog

How to Fix “fatal: unable to access : The requested URL returned error: 403” in Git

How to Fix fatal unable to access The requested URL returned error 403 in Git

How to Fix fatal unable to access The requested URL returned error 403 in Git

If you’ve ever tried pushing or pulling code from a Git repository and hit the dreaded error fatal: unable to access : The requested URL returned error: 403, you’re not alone. It’s one of those frustrating roadblocks that can stop you in your tracks—especially if you’re new to Git or working on a deadline. But don’t worry! This guide will walk you through what this error means, why it happens, and how to fix it step-by-step in plain, easy-to-understand language.

By the end of this article, you’ll not only solve the problem but also feel confident handling similar Git hiccups in the future. Whether you’re a beginner or a seasoned coder, let’s dive in and get that 403 error sorted out together!


What Does the “403” Error Mean?

Before we fix it, let’s break down what’s happening. The error looks something like this:

fatal: unable to access 'https://github.com/username/repo.git/': The requested URL returned error: 403

In simple terms:

Think of it like trying to enter a private club without the right pass—you’re at the door, but they won’t let you in. So, why is Git rejecting you? Let’s find out.


Why You’re Seeing the 403 Error in Git

There are a few common culprits behind this error. Knowing the “why” helps you pick the right fix. Here are the top reasons as of 2025:

1. Wrong or Expired Credentials

Git needs your permission to access a repository, usually through a username/password or a token. If your credentials are incorrect or outdated, you’ll get a 403.

2. Permission Issues

You might not have the right access level for the repository. For example, if it’s a private repo and you’re not a collaborator, Git will block you.

3. Token Authentication Changes

Since GitHub dropped password support for HTTPS in 2021, you need a Personal Access Token (PAT) or SSH key. Using an old method? That’s a 403 waiting to happen.

4. Typo in the URL

A tiny mistake in the repository URL—like a misspelled username or repo name—can trigger this error.

5. Two-Factor Authentication (2FA)**

If 2FA is enabled on your account (common in 2025 for security), you can’t use a plain password. Git needs a token instead.

6. Cached Credentials

Your computer might be holding onto old, invalid login info, confusing Git.

Now that we’ve got the “why” covered, let’s roll up our sleeves and fix it!


How to Fix the Git 403 Error: Step-by-Step Solutions

Here’s a clear roadmap to solve the fatal: unable to access 403 error. Try these fixes in order—they start simple and get more technical.

Step 1: Double-Check the URL

Let’s start with the easiest fix. Look at the URL in the error message (e.g., https://github.com/username/repo.git). Ask yourself:

To test it:

  1. Copy the URL from the error.
  2. Paste it into your browser.
  3. If it loads the repo, the URL is fine. If not, fix the typo and try again with:
git remote set-url origin https://correct-url-here.git
git push

Step 2: Verify Your Permissions

If the URL is correct, the issue might be access rights. Here’s how to check:

Fix:


Step 3: Update Your Authentication Method

In 2025, HTTPS Git operations rely on tokens, not passwords. If you’re still using a password—or an expired token—you’ll hit a 403.

Fix for GitHub (Personal Access Token)

  1. Generate a Token:
  1. Update Git:
    Run this command and enter your username and the token when prompted:
   git push

Or set it in the URL:

   git remote set-url origin https://username:token@github.com/username/repo.git
   git push

Fix for GitLab/Bitbucket


Step 4: Clear Cached Credentials

Your computer might be using old credentials. Let’s clear them out.

On Windows

  1. Open Credential Manager (search it in the Start menu).
  2. Go to “Windows Credentials.”
  3. Find entries like git:https://github.com.
  4. Remove them.
  5. Try pushing again—enter your new token when prompted.

On macOS

  1. Open Keychain Access (search via Spotlight).
  2. Search for “github.”
  3. Delete any related entries.
  4. Retry your Git command.

On Linux

  1. Run:
   git credential-cache exit
  1. Or edit ~/.git-credentials and remove outdated lines.

Step 5: Switch to SSH Instead of HTTPS

If HTTPS keeps failing, SSH is a reliable alternative. Here’s how:

  1. Generate an SSH Key:
   ssh-keygen -t ed25519 -C "your-email@example.com"

Press Enter for defaults, then find your key in ~/.ssh/id_ed25519.pub.

  1. Add It to Your Hosting Platform:
  1. Update Your Remote URL:
   git remote set-url origin git@github.com:username/repo.git
   git push
  1. Test It:
   ssh -T git@github.com

If you see “Hi username!” you’re good!


Step 6: Check for VPN or Network Issues

Sometimes, a 403 isn’t your fault—it’s the network. If you’re on a VPN or company Wi-Fi:

Retry your command after switching networks.


Real-Life Example: Fixing the 403 Error

Let’s walk through a quick scenario:

  1. Check the URL—looks good.
  2. Log into GitHub—you’re a collaborator.
  3. Realize your old password isn’t working (GitHub needs a token).
  4. Generate a PAT, update the remote URL:
   git remote set-url origin https://johndoe:ghp_xxxx@github.com/johndoe/myproject.git
  1. Push again—success!

See? It’s a process, but it works.


Troubleshooting Tips

Still stuck? Try these:


Preventing the 403 Error in 2025

Here’s how to avoid this headache next time:


Final Thoughts

The fatal: unable to access : The requested URL returned error: 403 message might feel like a brick wall, but it’s fixable. Whether it’s a typo, a token issue, or permissions, you’ve now got the tools to tackle it. Git is your friend—don’t let a 403 scare you off!

If you are still facing issue refer below resources:

Exit mobile version