1
내 모든 자격 증명 .gitconfig에 - .gitconfig와 git-credential-helper의 차이점은 무엇입니까?
─[$] cat .gitconfig
1 [user]
2 name = Shirish Agarwal
3 email = [email protected]
4 [core]
5 editor = leafpad
6 excludesfiles = /home/shirish/.gitignore
7 gitproxy = \"ssh\" for gitorious.org
8 [merge]
9 tool = meld
10 [push]
11 default = simple
12 [color]
13 ui = true
14 status = auto
15 branch = auto
지금 나는이
https://help.github.com/articles/caching-your-github-password-in-git/를 참조하십시오. git-credential-helper로 이동하여 이득이 있습니까? 아니면 github.com에있는 경우에만 도움이되는 항목입니까?
여기에 표시되는'.gitconfig' 항목은 * credentials *이 아닙니다.'user.name' 및'user.email' 설정은 Git이 커밋을 만들 때 사용하지만 ssh 또는 https를 통해 전달되지 않습니다. 'core.gitproxy' 설정은'git : //'연결에 영향을줍니다 (http://stackoverflow.com/q/5860888/1256452 참조). mattliu가 대답 한대로,'ssh : //'는 자신의 자격 증명 시스템을 사용하고, Git는 완전히 무시하고,'https : // '는 자격증 명을 사용합니다. – torek