본문 바로가기

Python_Beginer/GIT

[GIT]Connecting a local repository to a remote store(지역저장소 > 원격저장소 연결)

반응형
$ git init loc-git
$ cd loc-git
$ vim f1.txt
$ git add f1.txt
$ git commit -m "add a"
$ git log
$ git remote add orign https 저장소 주소
$ git remote -v

 

1. git remote add origin https 저장소 주소

 

2. git remote -v

: 원격 저장소 연결 확인

반응형