Remote Repository 생성 및 Local에 복사 (git clone) 1. GitHub에서 새로운 Repository를 생성 • Repository 이름, 설명, 공개/비공개 설정 • 초기화를 위해 README, .gitignore 파일 추가 가능 2. Local 환경에서 Repository 복사cd ~/Desktop # 원하는 local경로git clone https://github.com/github-username/repository-name.git remote repository를 local 환경에 복사 3. 클론한 폴더 열기cd repository-namecode . # VS Code에서 폴더 열기 Local Repository 작업 및 Remote Repository로..