atlassian-fisheye

What's the difference between 'commit' and 'revision'

人走茶凉 提交于 2019-12-23 09:16:23
问题 What's the difference between a commit and revision? We use SVN, and get metrics from Atlassian Fisheye. There is a report in Fisheye that shows the 'top committers - by revision' and 'top commiters - by commits'. No-one here can tell me what the difference is. Many thanks! Andy 回答1: A commit can contain many file revisions. A file revision is basically a file that is modified as part of a commit so a single commit can have many revisions. http://confluence.atlassian.com/display/FISHEYE

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

你离开我真会死。 提交于 2019-12-12 09:39:47
问题 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? 回答1: You can run following command on UNIX in

Are there any competitors to Atlassians Fisheye? [closed]

谁都会走 提交于 2019-12-12 09:38:05
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I'm looking for alternatives to view my source code repository and run metrics on it. 回答1: Have you looked at Review Board? It's an open source tool that is used on google code and is picking up some steam in general. I ended up not using it for my particular project because it didn't provide a user-friendly way

How can I programatically get Source code information from Issue Number in Jira Studio?

三世轮回 提交于 2019-12-12 06:29:31
问题 JIRA Studio (the "Issues" area, which is basically the part that just looks like "JIRA") includes a Source Tab. We link this to our Subversion instance (by including an issue number in the Message during check-in), this work great for human processes, but I can't find a way in the JIRA, Subversion, or Fisheye APIs to get at this link. Ideally, I'd like to call getIssue on the JIRA api and have it return the Subversion Revision IDs along with all the other info it returns, but I'd take any

Jira and git: How to get all branches reflected?

半腔热情 提交于 2019-12-07 02:14:55
问题 Using a development infrastructure of git, Fisheye+Crucible, and Jira 4.2. Commits to Fisheye-registered repositories are reflected in Jira Projects and Tickets since we configured the mappings in Jira; however, only commits on the master branch seem to be reflected. In Crucible, other branches can be chosen to search for commits for reviews. How can I make all those branches visible in Jira? 回答1: Seems like it is a limitation of Git-Fisheye ( https://confluence.atlassian.com/display/FISHEYE

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

Are there any competitors to Atlassians Fisheye? [closed]

浪子不回头ぞ 提交于 2019-12-05 04:43:14
Closed. This question is off-topic . It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I'm looking for alternatives to view my source code repository and run metrics on it. Have you looked at Review Board ? It's an open source tool that is used on google code and is picking up some steam in general. I ended up not using it for my particular project because it didn't provide a user-friendly way to do post-commit reviews. I imagine the web interface has improved dramatically since I evaluated it

How do I get into a non-password protected Java keystore or change the password?

假装没事ソ 提交于 2019-12-03 00:39:14
问题 I'm trying to import a trusted certificated into the Java cacerts keystore, but I have a problem. I tried to list existing trusted certificates and it seems that the keystore isn't password protected. $ keytool -list -keystore cacerts Enter keystore password: ***************** WARNING WARNING WARNING ***************** * The integrity of the information stored in your keystore * * has NOT been verified! In order to verify its integrity, * * you must provide your keystore password. * **********

Eclipse: Show author of each line in editor?

北城以北 提交于 2019-11-30 14:54:19
问题 I'd like to show the name of the author of each line in my Java files. I am already using FishEye (http://www.atlassian.com/software/fisheye/) but I'd like to have this feature within my Eclipse Java editor. 回答1: There is a similar feature in Eclipse: select Team / Show Annotation... in the right click menu on a Java file. It should work with various team providers (I only have experiences with CSV and SVN). Short description of this feature is available here. UPDATE : for the Eclipse EGit

Eclipse: Show author of each line in editor?

大憨熊 提交于 2019-11-30 12:09:34
I'd like to show the name of the author of each line in my Java files. I am already using FishEye ( http://www.atlassian.com/software/fisheye/ ) but I'd like to have this feature within my Eclipse Java editor. There is a similar feature in Eclipse: select Team / Show Annotation... in the right click menu on a Java file. It should work with various team providers (I only have experiences with CSV and SVN). Short description of this feature is available here . UPDATE : for the Eclipse EGit team provider, the corresponding menu is called Team / Show revision information. See more information in