Skip to content

Commit

Permalink
fixup! Add Microsoft DevAzure Server notes
Browse files Browse the repository at this point in the history
  • Loading branch information
vinokurig committed Feb 19, 2025
1 parent 6741b63 commit 4fb954e
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,20 @@ __<Secret_prepared_in_step_5>__
EOF
----
====
. Azure DevOps Server. If you are using Azure DevOps Server, you must also modify the xref:mounting-git-configuration.adoc[workspace's
gitconfig] with the following section:
+
```
[http]
extraheader = "Authorization: Basic <base64-encoded(:personal-access-token)>"
```
To generate the key-value pair, use the following command:
+
```
echo -n "extraheader = Authorization: Basic "$(printf ":%s" <personal access token> | base64)
```
+
see link:https://learn.microsoft.com/en-us/azure/devops/repos/git/auth-overview?view=azure-devops&tabs=Linux#personal-access-tokens[the documentation page] for more information.

.Verification

Expand Down

0 comments on commit 4fb954e

Please sign in to comment.