본문 바로가기
GitHub

GitHub 사용법

by avvin 2019. 8. 8.

참고 : 생활 코딩 ( https://www.youtube.com/watch?time_continue=1&v=KvBv_GMnkPU )


git remote add [origin1] [ repository link1 ] //원격저장소 이름 설정


git remote  //원격 저장소 보기


git remote -v //원격 저장소 주소 보기



git remote add [origin2] [ repository link1 ]  // 같은 링크에 원격저장소 2 생성


git remote -v

> origin1    [ repository link1 ]

> origin2    [ repository link1 ]



git remote --help // 원격 저장소 관련 도움말


git remote remove origin1 // 원격저장소 삭제



push


내가 작업하고있는 로컬 저장소를 기준으로하여 원격 저장소로 보낼 때 : push


git remote add origin [ repository link1 ] 


git push -u origin master

: checkout 되어있는 로컬 저장소의 (-u : branch(master))를 [ repository link1 ] 의 branch(master)와 동기화

>username 입력

>비밀번호 입력


한번 업로드된 이후에는 git push만 해도됨



로컬 저장소 만들기


폴더 하나 만들어서 해당 폴더로 이동한 다음


//원격저장소와 방금 생성한 지역저장소가 될 폴더 연동


git clone [저장소 링크]  [로컬저장소 이름 : home] // git clode [저장소 링크]  [로컬저장소 이름 : office]


git remove -v 로 연결된 원격저장소 확인



git commit -am Comment  

// Comment 수정하고싶으면 git commit --amend ( 마지막 메시지 개정하는 법 // push이전에만 사용 )



git pull로 당겨와서 사용하기