Git clone https 提示輸入帳號密碼

原本從 Github 上 git clone https 專案的指令長下面這樣,會提示你輸入 username 跟 password,

1
git clone https://github.com/username/repo_name.git

但 windows 新版的 git 反而是跳出一個對話框要我連去網頁 token authentication 的樣子,
但我還是喜歡原本的方式,所以找到了一個方式可以輸入 username 跟 password 就可以下載,
把 username 輸入完下列指令後會提示你輸入密碼,之後就會開始 clone 下載了

1
git clone https://username@github.com/username/repo_name.git

其它參考
https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/
https://www.tecmint.com/fix-git-user-credentials-for-https/