1) 根据tag创建分支gitbranchbranchnametagname或gitcheckoutbranchname2) 提交更改的code gitadd.gitcommit-m"Fix included"或者使用cherry-pick合并一个commitgitcherry-pick{commitid}3) 删除本地tag,并重新创建该taggittag-d{tagname}gittag{tagname}4) 删除远程tag,并push code重新生成远程taggitpushorigin--delete{tagname}//deletesoriginalremotetaggitpushorigin{tagname}//createsnewremotetag5) Update local repository with the updated taggitfetch--tags