참조링크 https://2hyes.tistory.com/91

 

 

- 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

 

- github에서 생성한 repository 주소를 복사하여 메모장에 준비해 두자

 

 

- github에 업로드 진행 할 프로젝트 마우스 우클릭 > Git Bash Here

- Git Cmd 창이 뜨면 초기 설정을 아래 참조 이미지 순으로 진행

git config --global user.name "github name"
git config --global user.email "github email"
git init
git add .
git commit -m "저장코멘트"
git remote add origin https://github.com/repository주소.git
git push -u origin master

+ Recent posts