git 命令对比 checkout restore switch

自 git version 2.23 开始,git 引入了新命令 restoreswitch。由于 checkout 这个命令能干太多的事情了,所以这两个新命令主要用于分担“责任过重”的 checkout 的语义理解负担。当然,我们依旧可以继续使用 checkout 来完成这些事情。

restore 的例子:

# 清除 Unstaged Changes
git restore .
# 等价于
git checkout -- .

switch 的例子:

# 切换分支
git switch test
# 等价于
git checkout test

# 创建并切换分支
git switch -c test
# 等价于
git checkout -b test

参考链接:

  • TIL — git switch & git restore

你可能感兴趣的:(Git,git,github)