
Git #2
·
Bootcamp_zerobase/Git & GitHub
이전 Git#1과 반대로, 이번에는 GitHub에 먼저 만들어져 있는 Repository를 Local로 가져오는 방법이다. Github - Repository Remote Repository 생성 Github에서 Reposirtory는 위와 같이 생성할 수 있다.위에서 보는것처럼, Local에서 생성 후 Remote로 보낼때가 아닌, Remote(Github)에서 먼저 생성시에는 Defualt branch 이름이 Main 인 것을 알 수 있다. - Local에서 생성 시 : master - remote에서 생성 시 : Main 물론 github 개인설정에서 Defualt branch 이름을 변경할 수 있다. git clone Local Repository를 생성하지 않은 상태에서 Githu..