<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On 10 March 2016 at 22:17, Peter Palaga <span dir="ltr">&lt;<a href="mailto:ppalaga@redhat.com" target="_blank">ppalaga@redhat.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Stian,<br>
<br>
just a few minor points. Please note that I am speaking primarily from the standpoint of somebody who often looks into the history of KC branches, because Hawkular (where I am primarily active) uses KC. I am not a regular contributor to KC.<br>
<br>
(1)<span class=""><br>
&gt; With JIRA key in commit and PRs linked in JIRA we get a good history<br>
&gt; that is useful in the future to identify what was changed and why.<br>
<br></span>
To see *what* was changed, I do not need to go to Jira. Git history is the ultimate source of that info.<br>
<br>
As for the *why*, the project has to coin some convention. From what you say it seems that it should be Jira, right? Yes, that is one of the legitimate choices, but not the only possible one. Git commit messages may serve the purpose too and I personally find them much more practical because they are much closer to where I usually start looking. Jira is usually one slooowly loading link further. Therefore, could you please explain why you find Jira better?<br></blockquote><div><br></div><div>One isn&#39;t better than the other. They serve different purposes. Git commit messages will tell you what code was changed, while JIRA descriptions will tell you why it was changed. Both are equally important. Making sure you can go from a JIRA issue to Git commits and the other way around are both important. Imagine two examples:</div><div><br></div><div>* A user searches for a bug in JIRA to see if the problem he&#39;s having has been resolved. He finds the issue and wants to take a look at what changes was made to understand it better.</div><div>* A developer finds some code he wrote 12 months ago was changed, looks at Git history to see who did it, but has no idea why. He then sees the JIRA key in the commit message and opens it in JIRA. There he finds a lengthy description of the bug, including several comments.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
(2) I want tags in branches.<br>
Your tags are outside branches (such as 1.9.x) and that makes it harder to clearly and quickly see what happened between e.g. 1.9.0 and 1.9.1. You are the second project doing it like this out of ~150 Java projects I have ever cloned.<br>
<br>
Please consider tagging the usual way.<br></blockquote><div><br></div><div>You&#39;ve certainly cloned more repositories than I have.. I&#39;m not sure what you mean. 1.9.x tags has to come from 1.9.x branch as master is now 2.x. Can you elaborate? </div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
(3) While I agree that the linking between git history and Jira is useful, saying that every commit needs a Jira does not sound reasonable. There certainly are commits that do not deserve a Jira, such as:<br>
* upgrades of dependencies<br>
* refactorings<br>
* various formatting and license header fixes<br>
I hope most of you will agree here.<br></blockquote><div><br></div><div>I disagree, I want a complete record of what&#39;s been done in JIRA. Upgrading of dependencies should not just be done randomly. It has a reasoning behind it (for example a security fix, or to re-allign with WF dependencies, or whatever) without a JIRA you don&#39;t have that. Same goes for refactoring, they either should be done as part of an existing JIRA or there should be a JIRA describing why it was done. The work has to be scheduled the same as all other work.</div><div><br></div><div>For minor documentation updates (grammar, spelling fixes, etc.) or minor pure formatting sure they don&#39;t need a JIRA.</div><div><br></div><div>All rules come with exceptions, that&#39;s just the way of life. However, by defacto all commits should have an associated JIRA. That&#39;s even more important for external contributions.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
(4) Pro tip for Chrome users:<br>
I created a content script that makes Jiras and BZs on GitHub clickable links. This is what it looks like: <a href="http://snag.gy/rq6Ja.jpg" rel="noreferrer" target="_blank">http://snag.gy/rq6Ja.jpg</a> How to install: <a href="https://goo.gl/bYUbHS" rel="noreferrer" target="_blank">https://goo.gl/bYUbHS</a><br>
<br>
Thanks,<br>
<br>
Peter<div class="HOEnZb"><div class="h5"><br>
<br>
On 2016-03-10 19:12, John Dennis wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On 03/10/2016 01:03 PM, Bill Burke wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Is there a way to automatically squash everything to your latest<br>
commit?<br>
</blockquote>
<br>
Maybe not automatically, but the conventional way to squash commits is<br>
with interactive rebase, e.g.<br>
<br>
% git rebase -i commit<br>
<br>
where commit is the commit id of the *prior* commit you want to start<br>
the squashing from. Git will fire up your defined editor and you just<br>
replace the pick keyword with the squash keyword for each commit to be<br>
squashed. Many examples on the web. It&#39;s not automatic but usually less<br>
than a minute from start to finish.<br>
<br>
HTH,<br>
<br>
</blockquote>
<br>
</div></div></blockquote></div><br></div></div>