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
'Git' 카테고리의 다른 글
GIt 명령어 배우기 -3 cherry-pick,인터렉티브 리베이스 (4) | 2019.02.11 |
---|---|
GIt 명령어 배우기 -2 커밋트리[Commit tree]에서 이동하는 방법( branch -f , reset, revert , ^, ~) (4) | 2019.02.07 |
GIt README 작성하기 (4) | 2019.02.01 |
GIt 명령어 배우기 -1 (commit, branch, checkout, merge, rebase) (270) | 2019.01.31 |
gitignore 적용하기 (255) | 2019.01.29 |
댓글