git submodule add 如何将用户和token一起写在命令中
时间: 2023-12-03 21:46:27 浏览: 231
可以使用以下命令将用户名和 token 一起写入 git submodule add 命令中:
```
git submodule add https://username:token@github.com/username/repo.git
```
其中,`username` 是你的 GitHub 用户名,`token` 是你的访问令牌。请将它们替换为自己的值。注意在 URL 中包含访问令牌可能会导致泄露令牌,因此请确保在使用时不要将命令行输出公开。
阅读全文