Fixed
Details
Assignee
Alex MillerAlex MillerReporter
Ghadi ShaybanGhadi ShaybanPriority
Major
Details
Details
Assignee
Alex Miller
Alex MillerReporter
Ghadi Shayban
Ghadi ShaybanPriority

Created January 17, 2018 at 6:38 PM
Updated April 22, 2021 at 6:14 PM
Resolved April 22, 2021 at 6:14 PM
Problem
Git defines two remote modes with authentication: ssh and https. Through tools.gitlibs we support ssh auth via a connection to an ssh-agent. git+https authentication is not currently supported, though common in the wild.
Workarounds
Use git over ssh, for now.
Background info
The mainline git implementation supports a mechanism named "credential helpers" through which it demands authentication from an oracle. These helper oracles are executables invoked with a map of authentication demand (arriving via stdin) and they return authentication information (over stdout):
This extension mechanism allows integrations with 1Password, LastPass, and Hashicorp Vault. By default
git config --get 'credential.helper'
returnsosxkeychain
on macOS andcache
on Linux.git
resolves credential helpers either by absolute path + args or like so:git also supports configuring defaults for usernames or credential helpers by looking up URLs in its config.
JGit, used by tools.gitlibs, supports the idea of a CredentialProvider with several concrete implementations (AwtCredentialsProvider, ChainingCredentialsProvider, ConsoleCredentialsProvider, NetRCCredentialsProvider, UsernamePasswordCredentialsProvider) but none that work the same way as mainline git.
Github currently prefers https over ssh for git access (though that has historically flip-flopped).
Non-starters
Putting credentials in deps.edn