🦔

Git 2.23でswitchを使ったリモートブランチのcheckout方法

2022/03/22に公開

方法

  1. fetchでリモートブランチを取得。
$ git fetch
  1. remote branch を確認。
$ git branch -r
origin/develop
origin/main
  1. switchでリモートブランチをcheckout
$ git switch develop
M	prisma/ERD.svg
M	prisma/schema.prisma
Already on 'develop'
Your branch is up to date with 'origin/develop'.

参考

https://stackoverflow.com/questions/1783405/how-do-i-check-out-a-remote-git-branch

Discussion