Contents
접기
728x90
맥북을 초기화 한 후
이렇게 이상하게 뜨는 문제가 발생했다.
원인은 git에 이름과 이메일 설정을 안해줘서 생긴거였다.(토큰은 연결 했었다)
🔹 git에대한세팅할때 이걸 제일 먼저해야됨
git config --global user.name "Your Name"
git config --global user.email you@example.com
세팅할때 Git 이름을 내이름으로 쓰기:JangYuseong
여기서 이메일은 변경사항을 받아볼 이메일이다. 꼭 github에 쓴 이메일이 아니여도 가능
🔹세팅이 안되면 yuseong01 authored and yuseong01 committed 9 hours ago이런식으로 뜸
🔹제대로 됐는지 확인은
git config --list
728x90
'GitHub' 카테고리의 다른 글
[GitHub] ⭐️Unity프로젝트 Github에 업로드하는 방법 (0) | 2025.05.02 |
---|---|
[GitHub] 갑자기 Git이 이 merge가 필요한 이유를 적으라한다 - explain why this merge is necessary (1) | 2025.04.26 |
[GitHub] GitHub프로젝트 파일 받아와서 작업 - local branch와 remote branch (0) | 2025.04.18 |
[GitHub] Unable to merge when changes are present on your branch. 오류 (1) | 2025.04.18 |
[Github] 깃허브 개념 알아보기 (2) | 2025.04.07 |