AWS Codecommit Git Clone error : fatal: unable to find remote helper for 'codecommit'

AWS Codecommit Git Clone error : fatal: unable to find remote helper for 'codecommit'

我正在尝试从我们的私人代码提交中克隆一个存储库,我有必要的访问权限,但每当我尝试在本地克隆时,我都会收到错误消息:

git clone codecommit::us-east-1://my-repo-name

fatal: unable to find remote helper for 'codecommit'

我之前遇到过remote helper error 但是对于https 可以通过ssh keys 解决,但这是我第一次看到这个。

我找到了解决方案。当你安装 git-remote-codecommit

时,你必须有版本 3 或更高版本的 python
pip install git-remote-codecommit

由于某些原因,安装 python 2.7 时安装不正确。

❯ git clone codecommit::us-east-1://my-repo-name
Cloning into 'my-repo-name'...
remote: Counting objects: 171562, done.
remote: processing
Receiving objects:  98% (118068/171562), 56.20 MiB | 3.09 MiB/s

它完成并在之后正常工作。

我在 macOS 和 venv 上遇到了同样的问题,clear python 3 解决了它。

python3 -m venv ~/Documents/venv
source ~/Documents/venv/bin/activate

venv 激活后安装 git-remote-codecommit 并克隆您的存储库

pip install git-remote-codecommit
git clone codecommit::us-east-1://my-repo-name