Git에서 사용자 이름 및 이메일 구성 확인
John Wachira
2024년2월15일
이 기사에서는 git 사용자 이름과 비밀번호를 확인하는 방법을 설명했습니다. 또한 이러한 자격 증명을 구성하는 프로세스에 대해서도 설명합니다.
Git에서 사용자 이름 및 이메일 구성 확인
이미 사용자 이름과 이메일을 설정했다고 가정하면 어떻게 확인합니까? 사용자 이름을 확인하려면 git config
명령을 실행하면 구성된 사용자 이름이 출력됩니다.
명령:
$ git config user.name
이메일을 확인하려면 아래 명령어를 실행하세요.
명령:
$ git config user.email
다음 예를 들어 보겠습니다. 위의 명령을 실행하여 Git 리포지토리에서 구성된 자격 증명을 확인합니다.
다음 명령을 사용하면 Git에서 기존 사용자 이름과 이메일을 구성하거나 변경할 수 있습니다.
사용자 이름을 구성하려면.
명령:
$ git config --global user.name "Your Name"
이메일을 구성하려면.
명령:
$ git config --global user.email "Email"
위의 이미지에 표시된 사용자 이름과 이메일을 변경하려고 시도하는 또 다른 예를 들어 보겠습니다. 다음 명령은 세부 정보를 변경해야 합니다.
명령:
$ git config --global user.name "John. W"
$ git config --global user.email "wachirajohnie11@gmail.com"
출력:
작가: John Wachira
John is a Git and PowerShell geek. He uses his expertise in the version control system to help businesses manage their source code. According to him, Shell scripting is the number one choice for automating the management of systems.
LinkedIn