개발/git
Bitbucket - commit compare(commit 묶어서 compare)
Bitbucket을 이용해서 코드리뷰시에 commit을 여러번 했을 경우 commit을 한번에 묶어서 비교하는 방법을 정리해보려고 한다. 1. Bitbucket 페이지에서 Compare 아이콘을 클릭한다. 2. Compare 화면에서 Source와 Destination에서 Branches, Tags, Commits 중에서 하나를 선택할 수 있는데 Commits을 선택하고 Source에서 수정된 commit revision number를 입력하고 Destination에서 수정전 commit revision number를 입력해주면 된다. commit revision number는 commit object를 식별할 수 있는 숫자이다. 아래와 같이 commit을 여러번 했다면 마지막 commit revisio..
Intellij commit 시 github 대시보드에 미노출
Intellij에서 commit, push 시 github 대시보드에 미노출되는 현상이 있었다. github 계정의 아이디와 이메일이 commit한 사용자의 정보와 달라서 집계가 안됬기 때문이다. commit 한 프로젝트의 commits 영역을 클릭하면 commit 한 사용자의 정보를 확인할수 있다. Intellij의 commit 사용자를 변경하기 위해서 Intellij의 Terminal 영역에서 아래의 명령어를 통해 사용자 정보를 확인해보니 github 사용자가 아닌 회사계정으로 되어 있었다. git config user.name git config user.email 해당 git repository만 변경하기 위해서 --local을 붙여서 아래의 명령어를 입력해서 사용자 정보를 변경후에 다시 comm..