📌  相关文章
📜  如何使用 extraHeader 克隆 git 存储库 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:01.961000             🧑  作者: Mango

代码示例1
PAT="mypat123"
REPO_URL=https://myorg@dev.azure.com/myorg/myrepo/_git/myrepo"
AUTH=$(echo -n ":$PAT" | openssl base64 | tr -d '\n')
git -c http.$REPO_URL.extraheader="Authorization: Basic $AUTH" clone $REPO_URL --no-checkout --branch master