본문 바로가기

환경설정

[GitHub] 프로젝트 올리기

1. Git 설치

https://git-scm.com/downloads

 

Git - Downloads

Downloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific exp

git-scm.com

 

 

 

2. GitHub에 새 저장소를 생성한다.

 

 

Repository name : 저장소의 이름

Description : 저장소에 대한 간단한 설명 

Public: 저장소를 모두에게 공개

Private: 지정된 사람에게만 공개

밑에 create 클릭

 

 

 

올릴 디렉토리 폴더를 찾아서 오른쪽 마우스 - Git Bash Here 클릭

 

 

-------------------------------------------------------------------------------------------------------------------------------

git 초기 설정(Git을 설치하고 초기 설정이 안된 분들은 해주셔야 합니다.)

git config --global user.name [Git 가입이름]

[]생략하고 가입 이름 입력  ->Repository name 

 

git config --global user.email [Git 가입이메일]

[]생략하고 가입 이메일 입력 -> e-mail

--------------------------------------------------------------------------------------------------------------------------------

 

 

 

git init 입력

 

 

git add . 입력

add(띄어쓰기).

add^.

 

 

git commit - "커밋 메세지"로 커밋 로그를 작성해줍니다.

 

 

Git 주소 url 복사

https://github.........

 

다시 커맨드창으로 가서 입력 후 업로드 하기

git remote add origin {url주소} 입력

 

git push -u origin master 입력

 

 

 

 

 

업로드 완료