로컬저장소의 파일 새 프로젝트로 올리기
1. 프로젝트가 있는 디렉터리로 이동하기
2. 초기설정
//아이디 닉네임 설정
$ git config --global user.name "gitlab닉네임"
$ git config --global user.email "gitlab이메일"
3. init하기
$ git init
4. remote 생성
ejdrma@gmail.com
https://gitlab.com/dooo3/(새로만들이름)
git remote add origin https://gitlab.com/userName/(만들고싶은 프로젝트 이름)
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
https://beomseok95.tistory.com/132
해당 링크에 있는 게시물을 참조하였습니다
댓글 없음:
댓글 쓰기