3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

WindowsからCodeCommitをSourceTreeで利用

Last updated at Posted at 2021-09-27

The requested URL returned error: 403にハマりました

HTTPSだとWindowsの認証情報ヘルパーがうまく機能しないようで
認証情報ヘルパーを使用しない設定でGit for Windowsを再インストールするといいとのことですが
後日また同様のエラーがでて安定してくれませんでした。

結果、SSHで対応しました。

秘密鍵はこちらを参考に生成してみてください

SSHキーの秘密鍵ファイルのパスは
ツール>オプション>全般から設定します
image.png

cloneする際のURIへIAMのアクセスキーIDを含めるようにします

IAMユーザーの認証情報タブ
image.png

ssh://<アクセスキーID>@git-codecommit.ap-northeast-1.amazonaws.com/v1/repos/HogeHoge

※クローン後にURIを変更したい際は
リポジトリの右上の設定>リモート>設定ファイルを編集から
エディタでconfigファイルを開き、以下を編集

[remote "origin"]
	url = ssh://<アクセスキーID>@git-codecommit.ap-northeast-1.amazonaws.com/v1/repos/HogeHoge

参考

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?