2 要素認証を有効にした後、、、などを試行するとgit clone
、次のエラーが表示されます。git fetch
remote: Invalid username or password.
fatal: Authentication failed for 'https://github.com/smartsendio/pickup-map.git/'
2 要素認証を有効にした後、、、などを試行するとgit clone
、次のエラーが表示されます。git fetch
remote: Invalid username or password.
fatal: Authentication failed for 'https://github.com/smartsendio/pickup-map.git/'
1 つの解決策は、@surendra によって既に説明されているように、個人アクセス トークンを使用することです。別の解決策は、パスワードで保護された SSH キーを使用することです。
次の手順に従います。
...しかし、ssh での認証に関して私が言いたい重要な点は、.git/config
(リポジトリ内の) git 構成ファイルに関するものです。次のような行が表示される場合があります。
[remote "origin"]
url = https://github.com/smartsendio/pickup-map.git
fetch = +refs/heads/*:refs/remotes/origin/*
上記の行に注意してくださいurl
...次のように変更する必要があります。
url = git@github.com:smartsendio/pickup-map.git
...GitHub リポジトリの [コード] ボタンから値をコピーして貼り付けることができます。