I have a CodeCommit repo that I'm trying to connect to from the command line of Windows 7.
My intention is to use the aws configure / aws credential helper method as I prefer this, in this context, to a username / password.
When attempting any git operations I get:
aws codecommit credential-helper $@ get: aws: command not found
I'm then able to then use a username and password but this invalidates the point of using aws configure to set up access keys.
The credentials section of my .gitconfig file looks like this:
[credential]
helper = !aws codecommit credential-helper $@
UseHttpPath = true
It looks like git can't access aws.cmd but the full path to it is on the system and user path environment settings.
Any ideas?
aws
on your path, you can run into problems if your path is too long where it gets truncated. Try moving the relevant bit to the front of your$PATH
variable – Commandhelper = /full/path/to/aws ...
? – Commandaws.cmd
as per @david-jackson's suggestion below – Ricoriki