在日常开发feature之后会在自己开发的分支上留下许多提交记录,想在最后发版本提交
将多个提交合并成一个提交记录,显得规整一些。
查询相关资料之后,发现使用 git rebase 和 git squash 命令配合完成上述需求。
A wanderer capable of grasping the beauty of the grass, with a heart full of ancient charm, and a fondness for playful wit. Those who understand my words are knowledgeable individuals; those who decipher my code truly comprehend the essence. I am a wandering code swordsman, carrying my skills and riding freely through the digital world.
在日常开发feature之后会在自己开发的分支上留下许多提交记录,想在最后发版本提交
将多个提交合并成一个提交记录,显得规整一些。
查询相关资料之后,发现使用 git rebase 和 git squash 命令配合完成上述需求。
PHP 8.3已经如期发布,看一下新版特带来哪些特性!
定义常量目前可以标识类型了!
8.3 之前
1 | interface I { |
8.3 之后
1 | interface I { |