我们如何在每次推送时使用 git 更改版本(每个 +1)?
例如我有一个 2 php 文件
libs/lib1.php
libs/lib2.php
在每个标题上通常都有一些信息,例如
/**
* LIB1.PHP
* this libs does something like this
* and that this is a doc for you
* @version 145
* @todo something todo
* @author DAMS
*/
/**
* LIB2.PHP
* this libs does something like this
* and that this is a doc for you
* @version 445
* @todo something todo
* @author DAMS
*/
我们可以在每次推送时搜索并添加 +1 do 版本吗?