progit2-ja icon indicating copy to clipboard operation
progit2-ja copied to clipboard

credential.helper の使用例でシングルコート抜け

Open takekazuomi opened this issue 7 years ago • 0 comments

認証情報の保存で https://github.com/progit/progit2-ja/blob/master/book/07-git-tools/sections/credentials.asc

下記のようになっていますが。

$ git config --global credential.helper store --file ~/.my-credentials

シングルコートが必要で、下記が正しい

$ git config --global credential.helper 'store --file ~/.my-credentials'

英語版は、このコミットで直している https://github.com/progit/progit2/commit/69e4e5b994294d56045e2dc2fbc7edc5c1651282

takekazuomi avatar Oct 04 '17 08:10 takekazuomi