0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

CodeCommit の自分用メモ

Last updated at Posted at 2023-12-18

接続方法

AWS CodeCommit リポジトリに接続する - CodeCommit リポジトリのクローンを作成してリポジトリに接続する
https://docs.aws.amazon.com/ja_jp/codecommit/latest/userguide/how-to-connect.html#how-to-connect-http

Git 認証情報を使用した HTTPS の場合、または AWS CLI に含まれている認証情報ヘルパーの場合:
git clone https://git-codecommit.us-east-2.amazonaws.com/v1/repos/MyDemoRepo    my-demo-repo
git-remote-codecommit を使用した HTTPS の場合 (AWS CLI でデフォルトのプロファイルと AWS リージョンが設定されていると仮定):
git clone codecommit://MyDemoRepo my-demo-repo
SSH の場合:
git clone ssh://git-codecommit.us-east-2.amazonaws.com/v1/repos/MyDemoRepo    my-demo-repo

参考
https://qiita.com/kaburagi_/items/e3ff3a048ec548bf86b4

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?