実現したいこと
ローカルのVSCodeから、git cloneコマンドを用いてAWS CodeCommit上のリポジトリをコピーしたいです。
credentialファイルの中身はアカウントのAWS認証情報(access_key, secret_key, session_token)を記載しています。
発生している問題・分からないこと
> git version git version 2.47.0 > aws --version aws-cli/2.19.4 Python/3.12.6 Darwin/24.1.0 exe/x86_64 > git config --global credential.helper '!aws codecommit credential-helper $@' > git config --global credential.UseHttpPath true > git config --global --list user.name=xxx user.email=xxx credential.helper=!aws codecommit credential-helper $@ credential.usehttppath=true > cat /Library/Developer/CommandLineTools/usr/share/git-core/gitconfig [credential] #helper = osxkeychain [init] defaultBranch = main > git clone -b main codecommit::ap-northeast-1://プロファイル名@test1 tst-h Cloning into 'tst-h'... git: 'remote-codecommit' is not a git command. See 'git --help'. fatal: remote helper 'codecommit' aborted session
エラーメッセージ
error
1何が原因でgit: 'remote-codecommit' is not a git commandと出てしまうのかわかりません。
該当のソースコード
特になし
試したこと・調べたこと
- teratailやGoogle等で検索した
- ソースコードを自分なりに変更した
- 知人に聞いた
- その他
上記の詳細・結果
プロファイルの中身、AWS CLI認証情報ヘルパーの設定をいじる等してみたのですがうまくいきませんでした。
補足
特になし
回答2件
あなたの回答
tips
プレビュー