[Git] 설치 및 설정
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는 유료 정책으로 운영이 되고 있는 것 같다.
'◽ Git' 카테고리의 다른 글
[Git - bash] Stash, reset 개념 >>> ★협업 할 때 충돌 나면 아주 유용한 기능. // git stash (save), git stash apply, git stash pop (0) | 2020.09.15 |
---|---|
[Git] 저장소의 branch 가져오기 : "git clone -b [branch_name] [repository_url] (0) | 2020.09.15 |
[Git] error: pathspec '<BRANCH_NAME>' did not match any file(s) known to git. 해결 방법 (0) | 2020.09.15 |
[Git] 소스트리와 깃허브 연동하기 ( 아무래도 GUI가 잘되어 있어서 소스트리가 편하다. ) (0) | 2020.01.17 |
[Git] commit, push 별로 저장되는 위치 (0) | 2020.01.14 |
[Git] 소스트리 vs 이클립스 깃 (0) | 2020.01.13 |
[Git] 1. branch, 2. master branch, 3.checkout 개념 (0) | 2019.11.17 |