jira

How to get all SVN commits that do not include Jira bug key in the comment?

怎甘沉沦 提交于 2019-12-05 13:39:27
I have Jira and Fisheye setup so that I can include Jira key in the commit comment ( Smart Commits ). Fisheye will link source code and Jira issue mentioned in the commit. I would not like to use something like JIRA Commit Acceptance Plugin to decline commits without Jira keys. As it is too restrictive. But would still like to monitor commits without Jira keys. How to get a report of all SVN commits that do not include Jira bug Key in the comment? You can run following command on UNIX in the directory with your working copy: svn log | grep -v '\--' | awk 'ORS=(NR%3)?" ":"\n"' | grep -v "[ISSUE

Get all status's from JIRA webservice

谁说我不能喝 提交于 2019-12-05 12:46:16
Is there a way to get all status types from the JIRA webservice, either through the api or through a JQL request? (The issue status is the field that is mapped to the swimlanes when the board is set up) Whith JIRA REST API you can : rest/api/2/status or for each project : rest/api/2/project/{projectIdOrKey}/statuses see the online rest api browser : it's a wonderful tool : https://jira.atlassian.com/plugins/servlet/restbrowser#/resource/api-2-status For future reference, to see what's in a project's swimlanes for a JIRA agile board you make a request like this: https://jira.atlassian.com/rest

Commit message hook on github

一个人想着一个人 提交于 2019-12-05 10:48:17
I am trying to setup a pre-receive hook in github that I used to use on STASH. In STASH, I had a pre-receive hook that used to enforce "A custom commit message that should have a JIRA number included in it". Now, I am trying to understand what would be the best way to do something similar on github. If I split it up, it would be: Requiring a custom commit message. Every commit should include an existing JIRA. Enforce this on any pull request as well. Eg: TEST-1 Adding the first commit message. Can anybody here help me, how can this be done ? GitHub only offers webhooks , which allows you to

Can reflection be used to instantiate an objects base class properties?

烂漫一生 提交于 2019-12-05 10:09:39
Like this: public class remoteStatusCounts : RemoteStatus { public int statusCount; public remoteStatusCounts(RemoteStatus r) { Type t = r.GetType(); foreach (PropertyInfo p in t.GetProperties()) { this.property(p) = p.GetValue(); //example pseudocode } } } The example is a bit simple (it's from the Jira API - RemoteStatus has 4 properties), but imagine the base class had 30 properties. I don't want to manually set all those values, especially if my inherited class only has a couple of extra properties. Reflection seems to hint at an answer. I saw at Using inheritance in constructor (publix X

Restricting Subversion commits if the Jira Issue key is Not in the commit message

强颜欢笑 提交于 2019-12-05 10:08:34
I am using SVN-1.7.4 for revision control and atlassian JIRA as the issue tracker for my LAMP website. I want to restrict SVN commit if any of my team member commits without mentioning the Jira Issue key for the same. I am using JIRA standalone and have installed it on my server. Google search gave me Subversion Jira Plugin (https://studio.plugins.atlassian.com/wiki/display/SVN/Subversion+JIRA+plugin) but it can only help me out in tracking the commits that had a JIRA key, not in restricting them. Please let me know, if I should post any more specifics about the issue. user1735629 It's not

Creating jira issue via Rest c# httpClient

落爺英雄遲暮 提交于 2019-12-05 09:11:43
I have read one answer on atlassian https://answers.atlassian.com/questions/79902/using-httpclient-c-to-create-a-jira-issue-via-rest-generates-bad-request-response where one user created a JIRA issue by the following code. I adapted it but get an error by using a self-build class issue with ObjectContent Http.HttpContent content = new Http.ObjectContent<Issue>(data, jsonFormatter); The compiler wont accept it. Does anybody know why? public string CreateJiraIssue() { string data= @"{ ""fields"": { ""project"": { ""key"": ""HELP"" }, ""summary"": ""Test Ticket"", ""description"": ""Creating of

JIRA安装部署

时光怂恿深爱的人放手 提交于 2019-12-05 06:15:49
使用现有mysql、JAVA环境 创库授权 create database jira default character set utf8 collate utf8_bin; CREATE USER 'jira'@'%' IDENTIFIED BY 'jira'; grant all privileges on jira.* to 'jira'@'%' identified by 'jira'; flush privileges; show grants for jira@'%'; 安装KIRA,上传.bin文件,chmod+x授权后执行 ./atlassian-jira-software-8.5.1-x64.bin 替换破解文件,将atlassian-extras-3.2.jar mysql-connector-java-5.1.42.jar放入以下路径 cd /opt/atlassian/jira/atlassian-jira/WEB-INF/lib 修改内存 vim /opt/atlassian/jira/bin/setenv.sh MINIMUM=1024 MAXIMUM=4096 全新环境安装 安装mariadb JDK yum -y install mariadb mariadb-server systemctl start mariadb systemctl

Internal bug tracking tickets - Redmine, Trac, or JIRA

╄→гoц情女王★ 提交于 2019-12-05 05:38:56
I've been looking at setting up Redmine , Trac , or JIRA to track issues. I want to be able to have my development team create internal tickets that are never seen by clients, while clients can create/edit tickets that are seen by the internal team. From the Trac documentation , you can set permissions to create or view tickets, but it doesn't seem to allow for viewing only certain tickets. It may be possible with Trac Fine Grained Permissions , but doesn't appear so. The Redmine documentation mentions: Define your own roles and set their permissions in a click but doesn't appear to have the

Hive 各版本关键新特性(Key New Feature)介绍

我与影子孤独终老i 提交于 2019-12-05 05:16:36
开源世界里的代码受社区推动和极客文化的影响,变化一直都很快。这点在 hadoop 生态圈里表现尤为突出,不过这也与 hadoop 得到业界的广泛应用以及各种需求推动密不可分(近几年大数据、云计算被炒烂的节奏 哈哈~)。生态圈里各个组件各种 bug、改进、新特性满天飞,刚看到下面某同学整理的 hadoop 版本变迁图之后,感觉也有必要整理下 hive 的新特性演进史,以备忘。 1、Hive 0.8.0 添加 Bitmap Indexes、TIMESTAMP datatype、Plugin Developer Kit、JDBC Driver Improvements 等新特性 该版本年代久远了,就不详述了~ 具体请参考: http://blog.cloudera.com/blog/2011/11/coming-attractions-apache-hive-0-8-0/ https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310843&version=12316178 2、Hive 0.9.0 1. 支持CREATE OR REPLACE VIEW 2. 增加错误提示 3. 支持NOT IN 和 NOT LIKE 4. Ctrl+c将会提交kill命令,kill掉当前运行的query job

Jira5.2.8 安装

谁说我不能喝 提交于 2019-12-05 04:35:32
第一步. 安装jira 1. 运行安装包,选择自定义安装 2. 最好使用netstat -ano检查一下端口是否被占用,如果占用就选其他的靓号吧~ 3. 选择集成数据库 输入应用的名称 第二步. 破解 1.程序中找到JIRA,点击结束JIRA服务。 2.将atlassian-extras-2.2.2.jar 覆盖至%JIRA_HOME%/atlassian-jira/WEB-INF/lib/atlassian-extras-2.2.2.jar。 3.将atlassian-extras-2.2.2.crack 覆盖至%JIRA_HOME%/atlassian-jira/WEB-INF/classes下 4. 浏览器打开my.atlassian.com,登录账号: yili0723@sina.com 密码:darbod861204 登录成功后,点击New Evaluation License. 建议选择“Jira Software”,官方的解释是 生成license 5. 再次启动jira服务,将获取到的licese放入jira授权信息中,点击增加按钮,破解完成。 6. 设置系统密码 第三步. 安装汉化包 1.汉化:1)点击进入管理员页面,2)点击plugins>>Manage Add-ons打开插件管理页面。(注:过程中可能要输入admin登录密码) 2.点击上传插件,选择“JIRA