본문 바로가기
etc./info

잔디심기(github count contributions)를 위한 git config 파일 설정

by moonsiri 2021. 2. 18.
728x90
반응형

github를 사용하면 볼 수 있는 count contributions. 일명 잔디심기.

 

 

push를 하면 commit 수에 따라 색의 진하기가 다른데, 문제는 어떨 땐 표시가 되고 어떨 땐 표시가 되지 않습니다.

원인은 commit 하는 PC의 설정 문제였습니다. 저는 github 계정이 두 개가 있는데, B계정으로 A의 github에 push를 했더니 B에 잔디가 심어져 A에는 표시가 되지 않았습니다. A에 잔디를 심고 싶은데 말이죠.

 

git 프로젝트 폴더를 들어가면 .git 이란 폴더를 확인할 수 있습니다.

더보기

프로젝트 > (우클릭) > Git Bash Here > $ git init

 

 

프로젝트 > .git

 

.git 하위의 config 파일을 notepad로 오픈합니다.

여기서 push 하는 repository, github의 유저 정보를 설정합니다.

[core]
	repositoryformatversion = 0
	filemode = false
	bare = false
	logallrefupdates = true
	symlinks = false
	ignorecase = true
[remote "origin"]
	url = https://github.com/moonsiri/프로젝트.git
	fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
	remote = origin
	merge = refs/heads/master
[branch "dev"]
	remote = origin
	merge = refs/heads/dev
[user]
	email = moonsiri@tistory.com

 

저장 후 다시 push 하면 contributes count가 올라간 것을 확인 할 수 있습니다.

 

못해도 one day one commit 하는 날을 기약하며 글을 마치겠습니다.

728x90
반응형

댓글