
+2024.04.03
더 쉬운 연결 법을 알아냈다!!!!!
git clone을 하면 알아서 클론 받은 주소를 알아서 리모트 origin 주소로 설정해준다!!
clone후, Repository와 동일한 이름의 폴더가 생기니 그 폴더 내로 이동해서 작업하면 된다! 이렇게 하면 아래 2,3,4 안해도 됌~!$ git clone [GitHub 주소]
$ git init
$ git remote add origin [GitHub 주소]
$ git pull origin main
$ git add .
$ git commit -m "first commit"
or
$ git add -am "first commit"
$ git push origin main