1. ホーム
  2. git

[解決済み] gnome-keyringと統合してgitを使用する方法

2022-05-13 20:47:24

質問

Git 1.8.0 は gnome-keyring との統合をサポートしています。

http://www.h-online.com/open/news/item/Git-1-8-0-can-access-Windows-and-GNOME-keyrings-1733879.html

git credentialsヘルパーについてのドキュメントを読んだ後。 http://git-scm.com/docs/gitcredentials.html

この新機能を使用する方法を見つけることができませんでした。どうすれば統合できますか? 私は Archlinux を使用しており、Archlinux のリポジトリから git をインストールしています。(git 1.8.0)

どのように解決するのですか?

Git 1.8.0 は gnome-keyring をサポートしていますが、バイナリはあなたのプラットフォーム用にコンパイルする必要があります。

これは Archlinux で解決したことです。

$ sudo pacman -S libgnome-keyring
$ cd /usr/share/git/credential/gnome-keyring
$ make
$ git config --global credential.helper /usr/share/git/credential/gnome-keyring/git-credential-gnome-keyring

VonCの解決策は近かったのですが、git configコマンドは実行ファイルを指す必要があります。それが私のために動作しない理由です。