Bug 1474414
Summary: | git-core no longer includes support for gnome-keyring integration | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Jim Perrin <jperrin> |
Component: | git | Assignee: | Petr Stodulka <pstodulk> |
Status: | CLOSED NOTABUG | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
Severity: | medium | Docs Contact: | |
Priority: | unspecified | ||
Version: | 26 | CC: | amahdal, besser82, c.david86, chrisw, jbowes, jhasse, leinardi, nsoffer, pstodulk, tmz |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | If docs needed, set a value | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2017-07-24 15:55:00 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Jim Perrin
2017-07-24 14:42:48 UTC
The libgnome-keyring which the gnome-keyring helper used is deprecated by the upstream Gnome community. The replacement library is libsecret, which supports Gnome keyring as well as other implementations using the XDG Secret Service API. There is a libsecret credential helper installed for this use: /usr/libexec/git-core/git-credential-libsecret This was added in upstream git in https://github.com/git/git/commit/87d1353a6a (Oct 2016) and in the fedora git package in https://src.fedoraproject.org/cgit/rpms/git.git/commit/?id=01e0c73c8 (Feb 2017). Ah, I see. thanks for the pointers. I just wasted some time on this, hopefully this will save the time for others. If you had this in ~/.gitconfig: [credential] helper = gnome-keyring You need now: [credential] helper = libsecret |