Github #1 Contribution 기록 안될 때
1월 22일 부터 1일 1커밋 계획을 세우고, Github에 프로젝트를 생성하면 Contribution 기여 그래프에 찐한 초록색의 네모칸이 하나 생긴다.
그래서 "아~ 이제 매일 커밋치면 매일 기여도 그래프에 색깔이 칠해지겠지?"하고 23일, 그리고 오늘 24일도 잘 찍혔겠지?
생각을 했지만, 찍혀 있지가 않았다...
구글에 "Github Contribution not showing" 이렇게 검색을 한다면,
아래와 같은 링크로 연결되지만, 역시 영어!
Why are my contributions not showing up on my profile? - GitHub Help
GitHub.com Profiles Managing contribution graphs on your profile Why are my contributions not showing up on my profile? Why are my contributions not showing up on my profile? Your profile contributions graph is a record of contributions you've made to GitH
help.github.com
간단히 이런 상황이 일어났다면, 확인할 사항은 딱 두가지다!
1. 프로젝트에 연결된 Github의 user.name
2. 프로젝트에 연결된 Github의 user.email
Github에 연결된 유저 아이디와 Email을 확인하고 싶다면,
Settings에 들어가면,
1. Github - Name
2. Github - Public Email
위의 두가지를 확인하고 현재 프로젝트에 연결된 Github 정보가 일치한지 확인하면 된다.
Console창에
git config user.name
git config user.email
- 정보를 확인 후, 만약 정보가 다르다면,
git config --global user.name "name"
git config --global user.email "email"
위와 같이 작성해준다면, 연동이 되어 "기여 그래프"에 잘 나타날 것이다~