:::: 개발 ::::/::: Git :::

GITHUB 저장소 로컬 연결 하기

nayha 2017. 11. 29. 13:37

git scm 설치 된 후 설명..


해당 플젝 폴더 git 초기화

git init 


사용자 정보 설정

git config --global user.name "John Doe"

git config --global user.email johndoe@example.com


    ** 혹시 통신 안되면 아래 옵션 실행

    SSL Verify 옵션 Off

    git config --global http.sslVerify false

    https repository 연결시 ssl 검증 끔

    git config http.sslVerify false


    출처 : https://www.lesstif.com/pages/viewpage.action?pageId=14090808


git clone https://github.com/JISOU/firstPython.git


파일 수정 후 git 상태 확인


git status


변경 파일 보임 성공


git add -all 


git commit -m '커밋 메세지'


git push 


사용 참고 출처 : http://rogerdudler.github.io/git-guide/index.ko.html

반응형