Posts Git - 명령어 - 2. 저장소(Repository)
Post
Cancel

Git - 명령어 - 2. 저장소(Repository)

Init


로컬 리포지토리로 만들기

1
git init
  • .git 폴더가 생성된다.


Remote


원격 리포지토리 이름 확인하기

1
git remote


원격 리포지토리 주소 확인하기

1
git remote -v


원격 리포지토리 주소 변경하기

1
git remote set-url origin [https://~.git]


This post is licensed under CC BY 4.0 by the author.