참고 : 생활 코딩 ( 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로 당겨와서 사용하기
'GitHub' 카테고리의 다른 글
[Problem] cannot remove ... : Device or resource busy (0) | 2019.08.09 |
---|---|
[Problem] No such file or directory (0) | 2019.08.09 |
Git branch 생성 // 정보확인, 병합은 이후에 추가 (0) | 2019.08.08 |
Git 설치부터 버전등록 / 변경사항 확인 (0) | 2019.08.08 |
GitHub 프로젝트 히스토리 보기 (0) | 2019.07.23 |