How to checkout branch of remote git, 깃 리모트 브랜치 체크아웃

To check out a branch from a remote Git repository, you can follow these steps:

1. Fetch the remote branches

First, ensure that your local repository is aware of the remote branches by using git fetch. This updates your local references to the remote branches.

git fetch origin

2. Check out the remote branch

Once the remote branches are fetched, you can check out the desired branch using git checkout -b and specifying the remote branch.

Command:

git checkout -b <local-branch-name> origin/<remote-branch-name>

Explanation:

  • <local-branch-name>: The name you want to give to your local branch.
  • origin/<remote-branch-name>: Refers to the branch on the remote called origin (which is the default name for the main remote repository) and the branch you want to check out.

Example:

If the remote branch is called feature-branch and you want to create a local branch with the same name, you would run:

git checkout -b feature-branch origin/feature-branch

3. Alternative using git switch (Modern Method)

You can also use the git switch command (introduced in Git 2.23) to achieve the same thing:

git fetch origin
git switch -c <local-branch-name> origin/<remote-branch-name>

This is equivalent to checkout but is a clearer way to switch between branches.

Summary Steps:

  1. Fetch the latest branches: git fetch origin
  2. Check out the remote branch: git checkout -b <local-branch-name> origin/<remote-branch-name>

댓글

이 블로그의 인기 게시물

AttributeError: module 'numpy' has no attribute 'float'

경량 리눅스 배포판

Install and run an FTP server using Docker

리눅스 (하드링크&소프트링크)

Boilerplate for typescript server programing

vsftpd default directory

urllib3 with proxy settings

2025 대학수학능력시험 9월 모의평가 듣기 16-17

Using the MinIO API via curl