[Git]git remote : github 로컬저장소와 원격저장소 연결
■ 로컬저장소와 원격저장소 연결 1) git init : 저장소 생성 (로컬 저장소) // 폴더 생성mkdir test_empty // 폴더 이동cd test_empty // git 저장소 생성git init 2) 파일 생성 후 커밋 (로컬 저장소)// 파일 생성 후 편집 vim hello.py // git 상태 확인git status // 저장소에 파일 추가git add hello.py (git add .) // 저장소에 등록git commit -m "first commit add hello.py" 3) git hub 저장소 생성 (Initialize this repository with a README 체크옵션 해제) 4) git remote : 로컬 저장소와 원격 저장소 연결git remote ad..
Software Engineering
2016. 6. 17. 15:43