Is it possible to share GHfW's Git configuration with the entire operating system? Ideally I'd like to have GHfW's git.exe on the system PATH and have the credentials stored through GHfW available from any command prompt?
質問する
275 次
1 に答える
1
デフォルトでは、Windows 用の GitHub は以下を保存先%USERPROFILE%
として使用します。%HOME%
.gitconfig
(すべてのリポジトリのグローバル構成).ssh/github_rsa
(GitHub for Windows が認証に使用する秘密鍵)*.ssh/github_rsa.pub
(GitHub for Windows が認証に使用する公開鍵)
GitHub for Windows の外で作業している場合、同じ環境変数パス%HOME%
に定義されていれば、git ローカル インストールは同じ設定の恩恵を受けます。%USERPROFILE%
ただし、ラップさ
れた
gitバージョンを使用する (実際に見つける) 簡単な方法はありません。
内部的に環境変数を使用します。msysgit
%APPDATA%\GitHub\PortableGit_8810fd5c2c79c73adcc73fd0825f3b32fdb816e7\cmd\git.exe
8810fd5c2c79c73adcc73fd0825f3b32fdb816e7
github/msysgit
%git_install_root%
ただし、そのパスをgrepでき%USERPROFILE%\Local Settings\Application Data\GitHub\shell.ps1
ます。
于 2012-11-08T14:29:28.947 に答える