git에서 새로운 repository 생성 후 링크 복사 <git repository link>
해당 project 폴더에서 마우스 우클릭 -> git Bash Here
💻 연결
$ git remote add origin <git repository link>
fatal: not a git repository (or any of the parent directories): .git
다음과 같은 오류발생 시,
$ git init
🔎 확인
$ git remote -v
📝 Pull
> git pull origin main
📝 clone
$ git clone <git repository link>