You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be really handy if go-getter was able to clone AWS CodeCommit repositories using instance profile for authorization. Currently accessing CodeCommit is possible but requires additional steps:
awscli needs to be installed on the machine
git-remote-codecommit needs to be installed on the machine
System git config needs to include codecommit specific configuration: git config --global credential.helper '!aws codecommit credential-helper $@' git config --global credential.UseHttpPath true
Having native support would allow users to access CodeCommit without installing awscli (or Python in general)
The text was updated successfully, but these errors were encountered:
It would be really handy if go-getter was able to clone AWS CodeCommit repositories using instance profile for authorization. Currently accessing CodeCommit is possible but requires additional steps:
git config --global credential.helper '!aws codecommit credential-helper $@'
git config --global credential.UseHttpPath true
Having native support would allow users to access CodeCommit without installing awscli (or Python in general)
The text was updated successfully, but these errors were encountered: