본문 바로가기
Git

gitlab 기존 프로젝트 올리기

by 봄석 2019. 1. 29.

Bash에서 gitlab에 기존 프로젝트 올리기



1. 프로젝트가 있는 디렉터리로 이동하기


2. 초기설정

//아이디 닉네임 설정
$ git config --global user.name "gitlab닉네임"

$ git config --global user.email "gitlab이메일"



3. init하기 

$ git init


4. remote 생성

git remote add origin https://gitlab.com/beomseok95/soccerting.git


https:// 부분은 gitlab에서 HTTP를 복사하여 넣어줍니다

origin이란 이름의 remote를 생성합니다


5. 현재 디렉터리 add, commit

//현재 디렉터리 모두 내용 모두 add하기
$ git add .
//commit 

$ git commit - "init"


6. push

$ git push -u origin master

-u 옵션으로 origin master 로 push


댓글