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)
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)