Commit 후 GitHub에 잔디 안심어질 때 - Seonmi-Hwang/study GitHub Wiki

😡 Commit but No Grass 🌱

어떤 commit은 commit signature가 verified 되는데,

어떤 commit은 아무것도 뜨지 않아 잔디가 심어지지 않을 경우.


약 10일 간 패턴을 분석해보니 git bash에서 commit한 것들만 verified 되지 않은 것을 확인할 수 있었다. (왜 이제 알았을까)

commitCurrent

⭐️github에 등록된 email과 로컬에서 push하는 .git의 email이 동일해야 잔디가 심어진다.⭐️

아래의 단계를 수행하면 정상적으로 commit이 verified 된다.

1. 작업중인 폴더로 가서 아래 명령어를 사용해서 email 확인

git config --list

2. github와 같은 이메일로 수정

git --global config user.email "본인 이메일"

* 이 로컬 저장소에 한해서만 적용하고 싶다면 --global 옵션을 빼면 된다.

그동안 commit했으나 반영되지 않은 것들 뻘짓 을 반영하고 싶다면 이메일 주소를 추가하면 된다.

If the email address used for the commit hasn't been added to your GitHub profile, you must add the email address to your GitHub account. Your contributions graph will be rebuilt automatically when you add the new address.

⚠️ **GitHub.com Fallback** ⚠️