728x90
git/gerrit 저장소의 default branch 변경하는 방법은 4가지 정도가 있다.
1. gerrit ui에서 변경하는 방법
- in the Web UI under 'Projects' > 'List' > <project> > 'Branches'
UI에서 변경하는 것은 설정에 따라 막혀 있을 수 도 있다.
https://gerrit-review.googlesource.com/Documentation/project-configuration.html#default-branch
2. ssh command 이용하는 방법
- 'ssh' -p <port> <host> 'gerrit set-head' <NAME> --new-head <REF>
필자가 직접 해보진 않았지만 될 것 같다.
3. git/gerrit 서버에 직접 들어가서 변경하는 방법
- 서버에 관련 저장소 위치에 들어가서 HEAD 파일 변경해 주면 된다.
refs: refs/heads/master의 master를 원하는 branch 이름으로 변경해 주면 된다.
4. rest API 사용
'Development' 카테고리의 다른 글
Cross 도메인 설정 (0) | 2023.04.19 |
---|---|
gerrit에 comment link 달기 (0) | 2023.04.18 |
Windows에서 scp 사용하기 (pscp) (0) | 2023.04.18 |
Gerrit Code Review with GitHub repositories (0) | 2023.04.18 |
Python IDE (pycharm, wingware) (0) | 2023.04.18 |