gitlab에 올린 프로젝트 수정하고 싶을 때

yeonsoo·2022년 7월 27일
0

폴더 새로 만들어서 파일 복사해서 푸시하기

$ mkdir gitlab
$ cd gitlab/
$ git init
$ git remote add origin [주소]
$ git add .
$ git commit -m "gitlab"
$ git push -f origin master

*branch protected 해제해줘야 푸시됨.
GitLab Project > Settings > Repository > Protected Branches > Expand > Unprotected 클릭

profile
to be enterprising

0개의 댓글