Does JGit support Git Credentials as documented here: http://git-scm.com/docs/gitcredentials?
I haven't found yet anything to this topic.
Does JGit support Git Credentials as documented here: http://git-scm.com/docs/gitcredentials?
I haven't found yet anything to this topic.
The counterpart to Git Credentials in JGit is the CredentialsProvider
interface. All commands that establish connections to remote repositories can be configured with a CredentialsProvider
instance. They inherit from TransportCommand
which has a setCredentialsProvider
method.