Skip to content

Instantly share code, notes, and snippets.

@ljayz
Last active March 24, 2024 18:33
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save ljayz/9fa6721c13f2c2d6a8f772a1e4ef1a37 to your computer and use it in GitHub Desktop.
Save ljayz/9fa6721c13f2c2d6a8f772a1e4ef1a37 to your computer and use it in GitHub Desktop.
Fix aws codecommit unable to access repository (The requested URL returned error: 403) in windows
this was tested using windows10 pro
when cloning a git this error was produced
fatal: unable to access 'https://git-codecommit.us-east-1.amazonaws.com/v1/repos/RepositoryName': The requested URL returned error: 403
to fix add the following git configuration
git config --global credential.helper "!aws codecommit credential-helper $@"
git config --global credential.UseHttpPath true
check if git has system credential.helper by typing
git config --system -l
if it has remove it by typing
git config --system --unset credential.helper
@141293
Copy link

141293 commented Jun 17, 2020

I performed the above steps, still the issue persist.

@Dylan-Carriere
Copy link

I had the same isssue and the command git config --global credential.UseHttpPath true saved me !

@Desh-Deepak-Dhobi
Copy link

It worked for me,,Thanks

@neatDevNetizon
Copy link

First, check the HTTPS Git credentials for AWS CodeCommit in My Security Credentials!!!

@rodrilima
Copy link

git config --global credential.UseHttpPath true

Works ! Thanks

@nicholasklaene
Copy link

git config --system --unset credential.helper

Worked for me. Thanks

@bilalanwer24h
Copy link

check if git has system credential.helper by typing
git config --system -l
if it has remove it by typing
git config --system --unset credential.helper

Worked for me. Thanks

@Wanfai5
Copy link

Wanfai5 commented Feb 28, 2022

It worked for me but still couldn't clone repository same error 403, any help

@siddu6003
Copy link

tried all of these still doesn't work :(

@pascalarrey
Copy link

git config --global credential.UseHttpPath true

Thanks, this also worked for me

@jthebest
Copy link

git config --system --unset credential.helper

Worked for me. Thanks

git config --system --unset credential.helper

Worked for me. Thanks

Thanks

@Easy-Cloud-in
Copy link

git config --system --unset credential.helper

It worked for me, Thanks

@benwzj
Copy link

benwzj commented May 27, 2023

work for me as well! thanks

@anirbanchakrabort
Copy link

The following steps worked for me . Thanks

@jucapitanio
Copy link

I had similar errors on a Mac. It only worked after I deleted the entries for git-codecommit from keychain access.

@msarmad3
Copy link

msarmad3 commented Sep 2, 2023

For windows, if the problem still exists "fatal: unable to access 'https://git-codecommit.us-east-1.amazonaws.com/v1/repos/RepositoryName': The requested URL returned error: 403"
Try fixing your environment variables in windows. If the credentials are changed for clonning the repos, the environment is led with the old set of region and key values.

  1. Search for "edit system environment variables"
  2. Look for "Environment Variables"
  3. Set up the new accesskey, secert accesskey and default region.
  4. click "ok"

@omonlar
Copy link

omonlar commented Sep 16, 2023

git config --global credential.UseHttpPath true

Works ! Thanks

it worked for me too

@nourhanahmedelbadawie
Copy link

I had the same isssue and the command git config --global credential.UseHttpPath true saved me !

thanks, working for me

@Pinky057
Copy link

git config --global credential.UseHttpPath true worked for me thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment