Skip to content

Latest commit

 

History

History
26 lines (26 loc) · 799 Bytes

ado_gcm_ssh.md

File metadata and controls

26 lines (26 loc) · 799 Bytes

GPG with ADO on linux

How to correctly setup GPG to handle gcm auth on ADO

install

dotnet tool install -g git-credential-manager
sudo apt install gpg pass
pass init <gpg-id>
gpg --gen-key

~/.gitconfig

[credential]
	azreposCredentialType = pat
	credentialStore = gpg
	msauthFlow = devicecode
	trace = ~/tmp/git.log

debug gcm

export GIT_TRACE=~/tmp/git.log; GCM_TRACE=~/tmp/git.log;

references