gitlab 명령어
2022. 1. 9. 20:42ㆍDocker
gitlab-ctl reconfigure
환경설정 적용
프로젝트명 및 위치 변경
해당 프로젝트 > Settings > General > Project name 변경
해당 프로젝트 > Settings > General > Advanced > Change path 변경
히스토리 삭제
https://donologue.tistory.com/373
프로젝트 삭제
삭제할 프로젝트 > Settings > General > Advanced > Delete project > Delete project
gitlab(Centos7)에서 Window로 ssh 접속할 경우
# ssh 결과 내용 한글 깨짐 : 조치 방법 못찾음
# 명령어를 한번에 써서 전송해야 함 : 접속후, 바로 gitlab-runner로 빠져 나옴
방법1) 여러 실행문을 '&&'으로 연결하여 실행함
ssh 계정@ip "chcp 65001 && dir"
방법2) 실행파일을 연결하여 실행함
ssh 계정@ip << test.cmd
# test.cmd
chcp 65001
dir
# 명령어 실행시, cmd 없이 수행이 됨 : 해당 프로그램 찾기 어려움
git의 ssh 연결시 22번 포트를 사용하지 않는 경우, 접속 방법
https://www.lesstif.com/gitbook/git-ssh-22-17105551.html
git clone ssh://git@도메인:[port]/root/프로젝트명.git
'Docker' 카테고리의 다른 글
Docker 삭제 (0) | 2023.02.25 |
---|---|
우분투에 Docker 설치하기 (0) | 2023.02.25 |
gitlab-runner 설치 (0) | 2022.01.02 |
Docker 에러 (0) | 2022.01.02 |
Docker 명령어 (0) | 2022.01.02 |