Skip to content
Archive
Main Navigation
Posts
Articles
Dev
Studies
Architecture
Patterns
Browser
Clean Code
Frontend
Git
HTTP
Javascript
Node
React
Security
Typescript
Vue3
Web 용어정리
Books
Composing Software
코어 자바스크립트
TCP/IP 완벽 가이드
Node.js 교과서(개정 3판)
코딩테스트
GitHub
Appearance
GitHub
Menu
Return to top
On this page
Table of Contents for current page
git clone
#
remote repo를 복사하여 local repo를 생성할 때 사용하는 명령어로, 실행하면 다음과 같은 작업들이 수행됩니다.
main
branch에서 최근 commit에 해당하는 프로젝트 파일들이 로컬에 저장된다.
remote history 전체를 로컬에 저장한다.
새로운
main
branch를 생성한다.
local repo 상에서 remote repo의 URL이
origin
이라는 이름으로 등록된다.