jira

How to archive projects in Jira, so they would disappear from Projects picker

↘锁芯ラ 提交于 2019-12-20 12:01:40
问题 We have bunch of old projects in Jira Studio that we want to keep online (in case, if we need to return to them for whatever reason), but I don't want them to appear anywhere in our daily Jira usage, i.e. dashboards, project picker etc. I followed the official instructions from here, but those archived projects are still visible through Projects picker on top of the page. Is there way to make them disappear? 回答1: The navbar only shows the most recently viewed projects. Your old project should

Jira issue number in git commit message

∥☆過路亽.° 提交于 2019-12-20 10:31:13
问题 At our company we are moving from svn to git. For issue tracking we use JIRA from Atlassian. Now we want to enforce that every commit message contains an issue number (just like we did with svn). We have found the commit-msg hook which we use to reject a commit if it does not contain an issue number. JIRA uses Fisheye to scan the git repo. If a commit message contains an issue number then the changes are shown under that issue. The problem is that a hook is not copied when a git repository is

Jira: assign an existing git branch to an issue

蹲街弑〆低调 提交于 2019-12-20 10:26:51
问题 In JIRA connected with STASH you can create a feature branch for an issue using the button 'create branch'. (That is nice to track the commits in this issue.) If a developer started working but did not know that there is such an issue he did not click the 'create branch'. Is there any possibility to assign an existing git branch to an issue? 回答1: ex-Stash developer here. Yes and no. Creating the branch though the UI is just a convenience. The important thing is that the name contains the JIRA

Jira for bug tracking and customer support?

只谈情不闲聊 提交于 2019-12-20 09:57:29
问题 We are thinking of using Jira for bug tracking and to integrate it with Git to connect bug fixes with version handling. Do you recommend Jira also for customer support or should we find another system like for example Zendesk for that purpose? I know that it is possible somehow to integrate for example Hipchat with Jira to enable chat functionality with customers but is Jira too complex for Customer Service to handle? What is your experience? 回答1: We use Jira for customer support, but we

JIRA: Find all issues related to a user

霸气de小男生 提交于 2019-12-20 08:48:42
问题 In JIRA, how do a find all issues related to a user, across all projects. A simple query search yields only full text results. i.e. only issues where the name is mentioned and not if the name has been assigned, has reported, has been cc’d etc. My intention here is to find tickets related to me for stock accounting... I am using JIRA 3.13 回答1: assignee = currentUser() OR assignee was currentUser() OR reporter = currentUser() This will suffice the query 回答2: Just had the same 'stock accounting'

SonarQube JIRA plugin - how to configure authorization data and what permissions a user needs?

醉酒当歌 提交于 2019-12-20 06:15:05
问题 http://docs.sonarqube.org/display/PLUG/JIRA+Plugin In the above instruction: set the sonar.jira.url , sonar.jira.login.secured and sonar.jira.password.secured properties. It's a JIRA user or SonarQube user, or both? What kind of permission this user needs? 回答1: Jira user Permissions: view project view issues create issue SOAP base URL value is relative to Server URL so you can remove the entered value. 来源: https://stackoverflow.com/questions/33046953/sonarqube-jira-plugin-how-to-configure

SonarQube JIRA plugin - how to configure authorization data and what permissions a user needs?

99封情书 提交于 2019-12-20 06:13:11
问题 http://docs.sonarqube.org/display/PLUG/JIRA+Plugin In the above instruction: set the sonar.jira.url , sonar.jira.login.secured and sonar.jira.password.secured properties. It's a JIRA user or SonarQube user, or both? What kind of permission this user needs? 回答1: Jira user Permissions: view project view issues create issue SOAP base URL value is relative to Server URL so you can remove the entered value. 来源: https://stackoverflow.com/questions/33046953/sonarqube-jira-plugin-how-to-configure

how to create an issue in jira using the rest api (java)?

我怕爱的太早我们不能终老 提交于 2019-12-20 04:58:20
问题 How to create issue in jira using the rest api. I have tried the examples using curl. But I need to create defect in eclipse using java and rest api. 回答1: You want to integrate JIRA into Eclipse? See: https://confluence.atlassian.com/display/IDEPLUGIN/Working+with+JIRA+Issues+in+Eclipse You want a custom application to create tickets automagically? Probably you'll need a REST client using the jersey-client artifact, I think this is the easiest way. Firstly, check out the REST API

Access JIRA API with api key without username and password

青春壹個敷衍的年華 提交于 2019-12-20 03:44:14
问题 Currently I'm accessing JIRA API in C#.Net application with username and password. But I need to access the JIRA API without entering a username and a password even without hashed username and passwords. Is there any way to create an API key and access JIRA API with that? 回答1: Yes, JIRA supports OAuth for that purpose, see: https://developer.atlassian.com/display/JIRADEV/JIRA+REST+API+Example+-+OAuth+authentication Unfortunately there's no C# sample code provided, but you should be able to

jira 8.6.0 jre11 Dockerfile

时光总嘲笑我的痴心妄想 提交于 2019-12-19 15:49:13
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> jira 8.6.0 jre11 Dockerfile include atlassian-agent 中国时区 1、download atlassian-agent tar到lib目录下 2、Dockerfile FROM adoptopenjdk/openjdk11:alpine-jre ENV JIRA_HOME /var/atlassian/jira ENV JIRA_INSTALL /opt/atlassian/jira ENV JIRA_VERSION 8.6.0 RUN set -x \ && sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories \ && apk upgrade --no-cache \ && apk --no-cache add curl bash ttf-dejavu tomcat-native \ && mkdir -p "${JIRA_HOME}" "${JIRA_INSTALL}" \ && chown -R daemon:daemon "${JIRA_HOME}" \ && chown -R daemon:daemon "${JIRA_INSTALL}" \ &&