1. project 생성
2. SSH 인증
$ ssh-keygen
$ vi .ssh/id_rsa.pub #복사하여 gerrit web에서 계정 Setting -> SSH Keys에 넣는다.
3. Gerrit Clone & Push
$ git clone "ssh://whatmam@192.168.111.130:29418/test_repo"
$ cd test_repo
$ git add test.config
$ git commit -m "test 1"
$ git push
'browse'는 git repogitory의 모든 파일을 보여준다.
'view all'은 code-review를 할때 사용된다.
먼저 browse에 들어가보면 정상적으로 push가 된것을 볼 수있다.
그러나 이건 code-review가 아닌 흔히 아는 git push와 동일하고 'view all'에는 아무것도 보이지 않는다.
gerrit은 code-review를 하기위해선 특정 brach로 push되어야한다. 좀 독특하다.
code-review를 위한 push를 해보자.
* Clone with commit-msg hook 로 clone하여 실행
$ git clone "ssh://whatmam@192.168.111.130:29418/test_repo" && scp -p -P 29418 whatmam@192.168.111.130:hooks/commit-msg "test_repo/.git/hooks/"
$ git config --global alias.push-for-review "push origin HEAD:refs/for/master"
$ ### test.config 수정
$ git add test.config
$ git commit -m "for code review test"
$ git push-for-review
기본적으로 Commit-Id가 있어야 push가 가능하다. 또한 push하는 brach가 "HEAD:refs/for/master"인 것을 볼 수 있다.
그래서 hooks를 이용하여 Commit-Id를 자동으로 생성하도록 하면서 push하게 쓰는데 gerrit web에서 Clone with commit-msg hook를 제공하여 한번에 받으면 된다.
좀 더 편한 push를 위해 alias 등록하여 사용하겠다.
참고 : https://www.mediawiki.org/wiki/Gerrit/Alternatives_to_git-review
이제 아래와 같이 확인하면 된다.
"REPLY" 버튼을 누르고 review하면 "submit" 버튼이 생성되어야 하는데 생기지 않는다.
Defalut가 Code-Review 2점이상 verified 1점이상 이여야 submit이 가능하다.. 근데 verified 점수주는게 보이지 않는다.
All-Projects -> Access
Reference: refs/heads/* 에 Label Verified Administrators 추가하여 저장
이제 정상적으로 submit 버튼이 보인다.
* Merged된 결과 화면
'Gerrit' 카테고리의 다른 글
Gerrit 계정 권한 설정 (0) | 2021.12.22 |
---|---|
Gerrit 설치 (0) | 2021.12.02 |