Gomdori

[GitLab/GitHub] 프로젝트 올리기 초기 설정 방법(Project Push) 본문

코딩(Coding)

[GitLab/GitHub] 프로젝트 올리기 초기 설정 방법(Project Push)

Ghomdori 2020. 3. 11. 14:19

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

혹은 Project Terminal에서 작업하기.

초기설정

Git 아이디 이메일 설정하기

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

Init

                                        git init

Remote 생성하기

				git remote add origin https://gitlab.com/~/~/@@@@.git

현재 디렉토리 add 및 Commit 해주기

					git add .
                    		git commit - "commit message"

 

프로젝트 올리기 push

						git push -u origin master

 

Comments