본문 바로가기

Python_Beginer/GIT

[GIT]Upload to/Down to Remote Storage(원격저정소 올리기 / 내리기)

반응형
$ git push -u origin master
$ vim f1.txt
$ git commit -am "abb b"
$ git push
$ git pull origin master
$ git log

1. git push

: 파일 올리기(지역저장소 -> 원격저장소)

 

2. git pull

: 파일 내리기(원격저장소 -> 지역저장소)

반응형