I'd like to clone an AWS CodeCommit repository using codecommit:// URLs for my purposes. I'd need to install https://github.com/aws/git-remote-codecommit on the host before running Git() but it's unclear to me how to achieve that :/ Is this an antipattern?
#Install git-remote-codecommit on host before cloning
1 messages · Page 1 of 1 (latest)
👋 you can definitely do it, but the standard client.Git() operation won't work since that happens in the engine and you don't have a straightforward way to install the codecommit remote helper there. You can still install it in a base container and call git clone there