<code> $ git config --global user.name 'xxxxx' $ git config --global user.email 'xxxxxx' </code>
<code> $ git config --global user.name 'xxxxx' $ git config --global user.email 'xxxxxx' </code>
현재 로컬 저장소를 삭제하고 git clone
다시 사용하세요. SSH
을 사용하세요.
예를 들어 git clone git@github.com:HmyBmny/hmybmny.github.io.git
이면 SSH
을 사용할 수 있습니다.
git에서 구성하는 데 사용되는 계정 인증 정보는 주로 credential
구성 항목의 helper
노드에 의해 제어됩니다.
다음 명령을 통해 저장된 계정 비밀번호를 구성할 수 있습니다
<code>git config --global credential.helper store</code>
사용자 디렉토리에서 직접 구성 파일을 수정할 수도 있습니다
<code>[credential] helper=store</code>