◽ Git
[Git] 설치 및 설정
kkk20000a
2019. 7. 30. 23:39
Git for Windows 설치하기
참고 : https://coding-factory.tistory.com/245
GitHub 초기 설정
참고 : https://rogerdudler.github.io/git-guide/index.ko.html
참고 : https://shxrecord.tistory.com/116
예시로 바탕화면에 git이라는 폴더를 만들었다.
1. command 창에서 "cd Desktop", "cd git2"
2. git clone "url주소"
3. command 창에서 "cd repository 이름" 입력
4. command 창에서 "git status" 입력 후 빨간색 파일명들 확인
5. command 창에서 "git add . " 입력
6. command 창에서 "git status" 입력 후 파란색 파일명들 확인
7. command 창에서 git commit -m "메시지" 입력
8. command 창에서 "git push" 입력
Github 정보
- Repository(repo) = 저장소
- Private Repository = 비공개 저장소
- Public Repository = 공개 저장소
Repository를 쓴다면 딱히 용량 제한없이 프로젝트 무한대로 업로드가 가능하다. Private Repository는 유료 정책으로 운영이 되고 있는 것 같다.