본문 바로가기
Developer/Git

git remote add 명령어 사용 방법 및 특징

by 아우럼 2024. 9. 20.
반응형

git remote add 명령어는 local 저장소에서 원격 서버 저장소를 연결할 때 사용하는 remote add 명령어에 관해서 설명하려고 합니다.

 

git remote add 명령어 설명

  • 원격 서버 저장소 통해서 소스를 관리하는 경우 개발자들은 git remote add 명령어 통해서 원격 저장소에 연결하여 사용합니다.
  • github 서버 연결하는 과정은 링크를 참조하세요.  https://aurumguide.tistory.com/103
  • git 시스템을 통해서 소스 관리를 한다면 git remote 관련 명령어는 숙지하고 있으면 좋습니다.
  • Gui tool을 이용해도 좋지만, 기본적으로 명령어는 자유롭게 사용하는 게 좋습니다.
  • 저장소 이름을 변경하는 경우, 원격 저장소와 연결이 끊기게 됩니다.

git remote add 명령어.
git remote add 명령어.

git remote 사용 방법

1. 원격 저장소 확인.

PS D:\gitremoteadd> git remote -v
origin  https://github.com/username/gitremoteadd.git (fetch)
origin  https://github.com/username/gitremoteadd.git (push)

2. 원격 저장소 세부적으로 확인.

  • git remote show <저장소 이름>
PS D:\gitremoteadd> git remote show origin
* remote origin
  Fetch URL: https://github.com/username/gitremoteadd.git
  Push  URL: https://github.com/username/gitremoteadd.git
  HEAD branch: main
  Remote branch:
    main tracked
  Local branch configured for 'git pull':
    main merges with remote main
  Local ref configured for 'git push':
    main pushes to main (up to date)

3. 원격 저장소 추가하는 방법.

  • git remote <원격 저장소 이름> <원격 저장소 URL>
git remote add origin https://github.com/username/gitremoteadd.git

4. 기존 원격 저장소 이름 변경.

  • git remote rename <원본 이름> <변경 이름>
PS D:\gitremoteadd> git remote rename origin originadd
Renaming remote references: 100% (1/1), done.
PS D:\35_GitHub\gitremoteadd> 
PS D:\35_GitHub\gitremoteadd> git remote -v
originadd       https://github.com/username/gitremoteadd.git (fetch)
originadd       https://github.com/username/gitremoteadd.git (push)
PS D:\35_GitHub\gitremoteadd>

5. 기존 원격 저장소 삭제.

  • git remote remove <저장소 이름>
PS D:\gitremoteadd> git remote remove originadd

 

반응형