1
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?

More than 5 years have passed since last update.

VSCode + Remote-Container + linux で CodeCommit にHTTPS接続したときにエラーが出る場合の対処

Last updated at Posted at 2019-09-01

VSCode + Remote-Container + linux (私はamazonlinux2を使用) という開発環境で
CodeCommit にHTTPS接続しようとしたときにNullReferenceExceptionが出てしまう場合の対処

原因

codecommitを使う場合、ヘルパの記載を ~/.gitconfigにしていると思いますが
/usr/etc/gitconfig
このファイルがあると~/.gitconfigのcredential.helper が無視されます。

[2019/10/19追記]
VSCodeのバージョンが変わったのか今は/etc/gitconfigにファイルが生成されるようです。

/usr/etc/gitconfig
[credential]
  helper = "!f() { command -v code >/dev/null 2>&1 && code --gitCredential $*; }; f"

VSCodeからコンテナ起動するたびに再作成されるようなので
~/.bashrc に以下記載をすることで毎回削除するようにしました。

~/.bashrc
if [ -e /usr/etc/gitconfig ];then
  rm /usr/etc/gitconfig
fi

ここにcodecommitのhelperの設定を書き込んでもいいかもしれません。

役にたった人はいいねください!

1
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
1
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?