自 git version 2.23 开始,git 引入了新命令 restore
和 switch
。由于 checkout
这个命令能干太多的事情了,所以这两个新命令主要用于分担“责任过重”的 checkout
的语义理解负担。当然,我们依旧可以继续使用 checkout 来完成这些事情。
restore 的例子:
1# 清除 Unstaged Changes
2git restore .
3# 等价于
4git checkout -- .
switch 的例子:
1# 切换分支
2git switch test
3# 等价于
4git checkout test
5
6# 创建并切换分支
7git switch -c test
8# 等价于
9git checkout -b test
参考链接:
版权声明:本文遵循 CC BY-SA 4.0 版权协议,转载请附上原文出处链接和本声明。
Copyright statement: This article follows the CC BY-SA 4.0 copyright agreement. For reprinting, please attach the original source link and this statement.