主题
  • 默认模式
  • 浅蓝色模式
  • 淡绿色模式
  • 深夜模式

git switch 命令

Git 基本操作


git switch 命令用于切换分支,旨在提供更清晰、更直观的分支切换体验。

git switch 命令与 git checkout 命令作用类似,但提供了更清晰的语义和错误检查。


git switch 常见用法

1. 切换到已存在的分支

✅ 以下命令允许你从当前分支切换到指定的分支 <branch-name>:

git switch <branch-name>

例如,从当前分支切换到main分支:

git switch main

2. 创建并切换到新分支

✅ 使用-c(或--create)选项可以创建新分支并立即切换到该分支:

git switch -c <new-branch-name>

例如,从当前分支切换到kaicz的新分支:

git switch -c kaicz

3. 切换到上一个分支

✅ 使用-可以快速切换回上一个工作的分支:

git switch -

例如,如果你之前在main分支上工作,现在切换到feature分支,使用git switch -可以快速返回到main分支。

4. 从远程分支创建并切换到本地分支

✅ 如果远程有一个分支,你想在本地创建对应的分支并切换过去,可以使用:

git switch <remote-branch-name>

例如,从远程分支origin/feature创建并切换到本地分支:

git switch origin/feature

Git 基本操作



评论区 0
发表评论