JMeter 缺少 Eclipse 创建补丁
Eclipse Create Patch is missing for JMeter
我想贡献 JMeter 文档,我正在遵循 contributing 手册,
我正在使用 Eclipse Neon.2 版本 (4.6.2),
我使用 Subversion 下载并遵循 ant 过程,我被补丁过程卡住了:
Create a PR using Patch
Create your patch by Right clicking on Eclipse project and select Team → Create Patch …
当我右键单击 Eclipse 项目和 select Team 时,我只得到 Apply Patch 而不是 Create Patch
如何创建补丁?有解决方法吗?
我发现了几个错误fixed,但目前它没有用。
注意:我没有 use/have git
编辑:找到我做的答案svn diff
:
svn diff > fix_ugly_bug.diff
得到了一个有差异的文件:
Index: docs/usermanual/component_reference.html
===================================================================
--- docs/usermanual/component_reference.html (revision 1813248)
+++ docs/usermanual/component_reference.html (working copy)
@@ -6866,6 +6866,11 @@
Critical Section Controller takes locks only within one JVM, so if using Distributed testing ensure your use case does not rely on all threads of all JVMs blocking.
</div>
<div class="clear"></div>
+<div class="clear"></div>
+<div class="note">
+Using multiple Critical Section Controllers can create a dead lock in a multi threads tests
+</div>
+<div class="clear"></div>
<div class="go-top">
<a href="#">^</a>
</div>
编辑
Eclipse Oxygen Release (4.7.0) 中也不存在菜单项
如果您使用的是 svn,请尝试:
svn diff > ~/fix_ugly_bug.diff
我使用 Neon 1,我有创建补丁菜单项。
您的项目是链接到 SVN 还是本地的?
手册正在获取 JMeter 主干的本地副本。这没有创建补丁的选项
为了能够创建补丁和其他操作您需要提供存储库 URL http://svn.apache.org/repos/asf/jmeter
并获取 JMeter 主干。
注意这可能需要一段时间才能完成操作
我想贡献 JMeter 文档,我正在遵循 contributing 手册,
我正在使用 Eclipse Neon.2 版本 (4.6.2),
我使用 Subversion 下载并遵循 ant 过程,我被补丁过程卡住了:
Create a PR using Patch
Create your patch by Right clicking on Eclipse project and select Team → Create Patch …
当我右键单击 Eclipse 项目和 select Team 时,我只得到 Apply Patch 而不是 Create Patch
如何创建补丁?有解决方法吗?
我发现了几个错误fixed,但目前它没有用。
注意:我没有 use/have git
编辑:找到我做的答案svn diff
:
svn diff > fix_ugly_bug.diff
得到了一个有差异的文件:
Index: docs/usermanual/component_reference.html
===================================================================
--- docs/usermanual/component_reference.html (revision 1813248)
+++ docs/usermanual/component_reference.html (working copy)
@@ -6866,6 +6866,11 @@
Critical Section Controller takes locks only within one JVM, so if using Distributed testing ensure your use case does not rely on all threads of all JVMs blocking.
</div>
<div class="clear"></div>
+<div class="clear"></div>
+<div class="note">
+Using multiple Critical Section Controllers can create a dead lock in a multi threads tests
+</div>
+<div class="clear"></div>
<div class="go-top">
<a href="#">^</a>
</div>
编辑
Eclipse Oxygen Release (4.7.0) 中也不存在菜单项
如果您使用的是 svn,请尝试:
svn diff > ~/fix_ugly_bug.diff
我使用 Neon 1,我有创建补丁菜单项。
您的项目是链接到 SVN 还是本地的?
手册正在获取 JMeter 主干的本地副本。这没有创建补丁的选项
为了能够创建补丁和其他操作您需要提供存储库 URL http://svn.apache.org/repos/asf/jmeter
并获取 JMeter 主干。
注意这可能需要一段时间才能完成操作