사용자 도구

사이트 도구


git:credential

git credential

http(s) 기반 인증 기본 사용자명 지정

[credential "https://gist.github.com"]
        username = <사용자명>

Password Cache

  • HTTP(S) 프로토콜의 경우 명령행에서는 비밀번호 저장해두기가 곤란하다. 그래서 캐시를 사용한다.
  • Linux에서는 다음 처리로 간편하게 캐시가 끝난다.
    # 기본 캐시 시간 15분
    git config --global credential.helper cache
     
    # 캐시 시간 지정
    git config --global credential.helper 'cache --timeout=7200'

core.askPass, GIT_ASKPASS, SSH_ASKPASS

경고 : IntelliJ IDEA의 경우, 모든 ASKPASS 방식에 대해 오작동하였다. credential helper, SSH Key 를 사용하거나 IntelliJ 내장 해결책을 사용해야만 했다.
  • helper 대신 core.askPass, GIT_ASKPASS, SSH_ASKPASS를 사용할수 있다.
  • helper 에 비번에 없고 core.askPass, GIT_ASKPASS, SSH_ASKPASS가 존재한다면 순서대로 호출해서 비번을 물어본다.

libsecret 기반 gnome-keyring credential

sudo apt-get install libsecret-1-0 libsecret-1-dev
cd /usr/share/doc/git/contrib/credential/libsecret
sudo make
git config --global credential.helper /usr/share/doc/git/contrib/credential/libsecret/git-credential-libsecret

SSH 인증 저장소

Password with Gnome-Keyring : Deprecated from 2014

Password with kde

Windows

참조

git/credential.txt · 마지막으로 수정됨: 2021/02/08 12:23 저자 kwon37xi