背景
在家远程办公的时候 git clone 报错:
remote: HTTP Basic: Access denied
remote: You must use a personal access token with 'api' scope for Git over HTTP.

解决方案
通过其提示的地址生成一个 Token:
remote: You can generate one at https://example.com/profile/personal_access_tokens

然后通过命令行组合 Token 操作即可:
git clone https://oauth2:${PERSONAL_ACCESS_TOKEN}@example.com/example/example.git
