Git Github

Remote Repository 연결 및 관리

최 수빈 2025. 1. 17. 17:34

 

 

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-name
code .  # VS Code에서 폴더 열기

 

 

 

Local Repository 작업 및 Remote Repository로 Push

 

 

1. 작업 파일 추가 및 커밋

git add . #변경된 파일을 스테이징
git commit -m "커밋 메시지 작성"  # 커밋 생성

 

 

2. Remote로 Push

git push origin main

 

 

 

Remote Repository URL 확인 및 변경

git remote -v  # Remote URL 확인
git remote set-url origin NEW_URL  # URL 변경

 

 

* Remote Repository의 변경사항 가져오기 (Pull)

git pull origin main  # Remote Repository의 최신 상태 가져오기

 


 

사실 나는 귀찮아서 걍

 

GitHub Repositories

 

확장하고

 

Git 리포지토리 복제

 

시작 페이지에서 복제 딸깍

 

GitHub에서 복제

 

명령 팔레트에서 또 딸깍

 

리포지토리 선택

 

딸깍

 

최근 항목 [GitHub]

 

담에 열 때는 최근 항목 딸깍

 

소스 제어

 

브랜치 생성요? 딸깍딸깍 커밋 푸시 구냥 딸깍 

 


 

언젠간 명령어 쓸 일이 있겠거니..하고 정리함

'Git Github' 카테고리의 다른 글

Git - Working Directory, Staging Area, Repository  (3) 2025.01.02
Git  (4) 2024.12.19
Markdown Syntax Guide  (3) 2024.12.19