Looking to use Devpod w/ git repos hosted in Azure Devops. We are using Git Credential Manager locally to manage credentials to https origins. Repos must be configured with useHttpPath in order for the credentials to work. However when creating a new devpod, it is not possible to automatically configure git to useHttpPath along with the git credential helper using the devpod agent.
Would be nice if I could optionally tell Devpod for a new workspace to configure useHttpPath when setting up the git credential helper
for devpod agent. Something like GIT_CREDENTIAL_USEHTTPATH
The workaround now is to manually git config --global credential.useHttpPath in the VS Code terminal on a new devpod
Hi @sthussey thanks for reporting this! that sounds like a very useful feature to devpod, your implementation sounds good to me. If you can provide a PR i'll be happy to review.
Looking to use Devpod w/ git repos hosted in Azure Devops. We are using Git Credential Manager locally to manage credentials to https origins. Repos must be configured with
useHttpPath
in order for the credentials to work. However when creating a new devpod, it is not possible to automatically configure git touseHttpPath
along with the git credential helper using the devpod agent.Would be nice if I could optionally tell Devpod for a new workspace to configure
useHttpPath
when setting up the git credential helper for devpod agent. Something likeGIT_CREDENTIAL_USEHTTPATH
The workaround now is to manually
git config --global credential.useHttpPath
in the VS Code terminal on a new devpodHappy to put up a PR if this change sounds good.