Git 사용법 GitHub 가입 GitHub 새 저장소 만들기 Git 설치, 설정
Github 가입 https://github.com/ 위의 주소에서 깃허브 계정 생성
GitHub 새 저장소 만들기 저장소 이름 “oop학번“ New repository -> 사용할 저장소 이름 작성 -> Create repository
Git 설치 구글에서 “Git"검색 Git 페이지에서 Git 다운로드 및 설치 진행
로컬 저장소 만들기 ‘Win+R’, cmd 사용하고 있는 workspace로 이동 git init git add . git config --global user.name "학번“ git config --global user.email "깃허브계정메일주소" 사용하고 있는 workspace로 이동 dir 디렉토리 살펴보기, cd 디렉토리 이동 git init Git 사용을 위한 초기화작업 git add . 모든 파일 git 사용준비 git commit –m “변경사항설명” 로컬 저장소에 변경사항 저장
로컬 저장소와 원격 저장소 연결 git push origin master git remote add origin 깃허브원격저장소 예) https://github.com/username/myproject.git git push origin master 최초 push일 경우, master 브랜치로 지정
git 사용 내 소스코드 변경사항 원격 저장 원격 저장소 불러오기 1. git add . 2. git commit –m ‘변경사항설명’ 3. git push 원격 저장소 불러오기 git clone git pull
참조 https://nolboo.kim/blog/2013/10/06/github-for-beginner/