반응형
1. git clone [ 복제 ]
git_home [ 지역 저장소 ]
$ git clone 원격저장소주소 git_home
$ ls -la
$ cd git_home
$ git log
$ git remote -v
git_office [ 지역 저장소 ]
$ git clone 원격저장소주소 git_office
$ ls -la
$ cd git_home
$ git log
$ git remote -v
2. push [ 올리기 ]
git_home [ 지역 저장소 ]
$ vim f1.txt
$ git commit -am "add c"
$ git push
3. pull [ 내리기 ] -> push [ 올리기 ]
git_office [ 지역 저장소 ]
$ git pull
$ vim f1.txt
$ git commit -am "add d"
$ git push
4, pull [ 내리기 ]
git_home [ 지역 저장소 ]
$ git pull
$ git log
반응형
'Python_Beginer > GIT' 카테고리의 다른 글
[GIT].gitignore - 파일 예외 처리 작업 (0) | 2020.03.16 |
---|---|
[GIT]Get remote Branch information(원격 브랜치 정보) (0) | 2020.01.16 |
[GIT]SSH Remote Access(SSH 원격 접속하기) (0) | 2020.01.15 |
[GIT]Collar Hub Storage Screen(깃 허브 저장소 화면) (0) | 2020.01.14 |
[GIT]Upload to/Down to Remote Storage(원격저정소 올리기 / 내리기) (0) | 2020.01.14 |