GitLab 명령어,설정파일
·
서버작업/GitLab
설적 적용 # gitlab-ctl reconfigure 서비스 재시작 # gitlab-ctl restart 서비스 상태 확인 # gitlab-ctl status 서비스 중지 # gitlab-ctl stop 서비스 삭제 # gitlab-ctl uninstall 혹은 # gitlab-ctl appt-get autoremove gitlab-ce ubuntu 16.04 gitlab 설정 파일 경로 /etc/gitlab/gitlab.rb /var/opt/gitlab/ /opt/gitlab/embedded/service/gitlab-rails/app/views 출처: https://abc2080.tistory.com/entry/GitLab-설정-파일-및-명령어 [Another Windows:티스토리]
project 권한
·
서버작업/GitLab
왼쪽 탭 메뉴에서 Group information >> Mmembers 에서 권한 프로젝트 권한 Guest : 이슈생성, 이슈댓글, 담벼락에 내용개시 가능 Reporter : Guest + 프로젝트 pull, 다운, 코드 스니팻 가능 Developer : Reporter + 새로운 브랜치 가능, 보호되지않는 브랜치를 푸쉬 리무브 가능, 태그 추가, 위키 수정 가능 Master : Developer + 팀멤버, 프로젝트 수정가능, 읽기가능한 엑세스 가능 추가 기능 Owner : 프라이빗 -> 퍼블릭 가능, 프로젝트를 다른 소속의 프로젝트로 변경할수 있다, 프로젝트 삭제 가능
GitLab 서버 삭제
·
서버작업/GitLab
깃랩서버 삭제 명령어! 무작정 따라하기! sudo apt-get remove gitlab-ce sudo rm -rf /var/opt/gitlab --kill all process live sudo pkill -f gitlab -- Remove paths sudo rm -rf /opt/gitlab sudo rm -rf /etc/gitlab
GitLab설치
·
서버작업/GitLab
명령어 총 정리! sudo apt-get update sudo apt-get install -y curl openssh-server ca-certificates curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh | sudo bash //ee or ce // ce 추천 //sudo EXTERNAL_URL="https://gitlab.example.com" apt-get install gitlab-ee sudo EXTERNAL_URL="http://gitlab.example.com/" apt-get install gitlab-ce cd /etc/gitlab/ sudo vi gitlab.rb sudo gitl..