khann's IT와 경제 블로그

반응형

가끔사용해서 기억이 잘 안나는 gitlab 명령어 루틴 정리이다.

 

gitlab에 처음 프로젝트를 푸시할 때

 

1. gitlab페이지에서 레포지터리 생성

 

2. gitlab에 업로드하고싶은 프로젝트 폴더로 이동

 

3. 글로벌 세팅

1
2
git config --global user.name "나의gitlab이름"
git config --global user.email "나의gitlab이메일"
cs

4. .git 파일 생성

1
git init
cs

5. .git 파일에 git주소 remote 연결

1
git remote add origin https://gitlab.com/나의gitlab이름/컴밋할레포지터리.git
cs

6. 컴밋할 파일 확인 후 컴밋헤드에 추가 

1
2
git status
git add .
cs

7. 컴밋 코멘트 입력

1
git commit -"Initial commit"
cs

8. 컴밋헤드 push하기

1
git push -u origin master
cs

 

9. Username for 'https://gitlab.com' : 이 나오면 나의gitlab이름 입력

10. Password for 'https://나의gitlab이름@gitlab.com' : 이 나오면 나의gitlab패스워드 입력

 

반응형

이 글을 공유합시다

facebook twitter googleplus kakaostory naver