2017-04-20 50 views

回答

0

即自動將消息從最後一次提交的命令是:

git log -1 --format=%B 

然後,我們必須通過這一信息轉達給我們的git tag -a命令,就像這樣:

git tag -a 2.1.3 -m "$(git log -1 --format=%B)" 

我們必須更換2.1.3與我們想要的版本號。

相關問題