Bitbucketでgitの操作をすると毎回アプリパスワードを聞かれる

2022年4月2日土曜日

bitbucket git

t f B! P L

Bitbucketでgit cloneやgit pushなど操作をすると以下のように毎回アプリパスワードを聞かれるのをなんとかしたい

$ git clone https://<username>@bitbucket.org/<username>/myrepo.git
Cloning into 'myrepo'...
Password for 'https://<username>@bitbucket.org':

stackoverflow先生を参考
How to access bitbucket using app password

originのurlにapp passwordの情報を入れる

$ git remote set-url origin https://<username>:<app_password>@bitbucket.org/<username>/myrepo.git

これでパスワードを聞かれなくなった

$ git push origin master
Counting objects: 10, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (9/9), done.
Writing objects: 100% (10/10), 3.72 KiB | 0 bytes/s, done.
Total 10 (delta 1), reused 0 (delta 0)
To https://<username>:<app_password>@bitbucket.org/<username>/myrepo.git
   19599f0..9a29e84  master -> master

QooQ