본문 바로가기

GitHub

[GitHub] 사용자 등록

경고메시지

Your name and email address were configured automatically based on your username and hostname. Please check that they are accurate.
You can suppress this message by setting them explicitly. Run the
following command and follow the instructions in your editor to edit
your configuration file:

    git config --global --edit

After doing this, you may fix the identity used for this commit with:

    git commit --amend --reset-author

 

위 메시지는 Git이 커밋을 만들 때 커밋에 사용된 사용자 이름과 이메일 주소가 설정되어 있지 않아서 발생됨

Git커밋에는 항상 작성자(author)의 이름과 이메일이 기록되어야 함

'git config --global --edit'  명령을 실행하면 사용자 전역 설정을 편집할 수 있는 Git 구성 파일이 열림

이 파일에서 사용자 이름과 이메일을 설정할 수 있음

 

 

git config --global user.name "kimskyyyy" 
git config --global user.email "hhhhh823@naver.com"