gitlab 명령어

2022. 1. 9. 20:42Docker

https://abc2080.tistory.com/entry/GitLab-%EC%84%A4%EC%A0%95-%ED%8C%8C%EC%9D%BC-%EB%B0%8F-%EB%AA%85%EB%A0%B9%EC%96%B4

 

GitLab 설정 파일 및 명령어

설적 적용 # gitlab-ctl reconfigure 서비스 재시작 # gitlab-ctl restart 서비스 상태 확인 # gitlab-ctl status 서비스 중지 # gitlab-ctl stop 서비스 삭제 # gitlab-ctl uninstall 혹은 # gitlab-ctl appt-get..

abc2080.tistory.com

gitlab-ctl reconfigure

환경설정 적용

프로젝트명 및 위치 변경

해당 프로젝트 > Settings > General > Project name 변경

해당 프로젝트 > Settings > General > Advanced > Change path 변경

히스토리 삭제

https://donologue.tistory.com/373

 

github 잘못 올라간 파일 히스토리까지 삭제하기

잘못해서 깃허브에 암호 파일이라던지, env 파일을 올려 난감한 상황에 처할 때가 있습니다. 저도 최근 .pem 파일을 push 해서 난처한 상황에 처하고 말았는데요. 이렇게 푸시까지 이루어진 상황에

donologue.tistory.com

프로젝트 삭제

삭제할 프로젝트 > 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 을 ssh 로 연결시 22번 이 아닌 다른 포트 사용하기

포트 번호를 적지 않을 경우 host 명과 path 사이에 : 가 없어야 함. (: 가 있으면 : 를 포함해서 host name 으로 인식해서 "mydomain.com: no address associated with name" 에러가 발생함 git clone ssh://lesstif@mydomain.com

www.lesstif.com

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