最近、GitHubで2要素認証の使用を開始しましたが、プライベートリポジトリで通常の方法でhttps経由でgitを使用できなくなりました。
peter@computer:~$ git clone https://github.com/[...]/MyPrivateRepo
Cloning into 'MyPrivateRepo'...
Username for 'https://github.com': [...]
Password for 'https://[...]@github.com':
remote: Invalid username or password.
fatal: Authentication failed for 'https://github.com/[...]/MyPrivateRepo/'
2要素認証を無効にすると、以前と同様に使用できます。
peter@computer:~$ git clone https://github.com/[...]/MyPrivateRepo
Cloning into 'MyPrivateRepo'...
Username for 'https://github.com': [...]
Password for 'https://[...]@github.com':
remote: Counting objects: 147, done.
remote: Total 147 (delta 0), reused 0 (delta 0), pack-reused 147
Receiving objects: 100% (147/147), 22.70 KiB | 0 bytes/s, done.
Resolving deltas: 100% (87/87), done.
Checking connectivity... done.
SSHを使用でき、すべてが機能することはわかっていますが、たとえばリクエストで認証トークンを送信することにより、HTTPS経由でGitHubを使用しながら2要素認証を維持できる方法はありますか?