Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/github/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何在GitHub发布创建中设置说明_Github_Automation - Fatal编程技术网

如何在GitHub发布创建中设置说明

如何在GitHub发布创建中设置说明,github,automation,Github,Automation,我知道如何通过以下操作设置发布的标题 hub release create -m "v1.0.0 Release" v1.0.0 但是,如何设置描述?我已经尝试了hub release create-m“v1.0.0发行版\n这是描述“,但是\n和描述仍然都在标题中。解决了这个问题,您需要执行以下两个消息: hub release create -m "v1.0.0 Release" -m "This is the description for this release" v1.0.0

我知道如何通过以下操作设置发布的标题

hub release create -m "v1.0.0 Release" v1.0.0

但是,如何设置描述?我已经尝试了
hub release create-m“v1.0.0发行版\n这是描述“
,但是\n和描述仍然都在标题中。

解决了这个问题,您需要执行以下两个消息:

hub release create -m "v1.0.0 Release" -m "This is the description for this release" v1.0.0