Skip to content
Snippets Groups Projects

Iss #112 - Add help message related to common troubleshooting to ui

Merged Iss #112 - Add help message related to common troubleshooting to ui
1 unresolved thread
Merged Martin Lowe requested to merge (removed):malowe/main/112 into main
1 unresolved thread
@@ -57,7 +57,7 @@
<div class="col-md-24 margin-bottom-20">
<div class="panel panel-danger">
<div class="panel-heading"><i class="fa fa-times" aria-hidden="true"></i>
Author(s) covered by necessary legal agreements
Author(s) not covered by necessary legal agreements
</div>
<div class="panel-body background-white">
<ul class="list-group-item-text">
@@ -69,6 +69,7 @@
</div>
</div>
</div>
<a id="more-details" href="#accordion" class="big" data-toggle="collapse">More details
<i class="margin-left-10 icon-toggle glyphicon glyphicon-plus"></i>
</a>
@@ -93,6 +94,29 @@
</div>
{/for}
</div>
</div>
<div class="row">
<div class="col-md-24 margin-top-20 margin-bottom-20">
<div class="panel info-panel">
<h3 class="panel-heading margin-top-0"><i class="fa fa-info margin-right-15" aria-hidden="true"></i>Common troubleshooting tips</h3>
<div class="panel-body">
<p>
A common error experienced by users is that the email associated with commits do not align with the email set in the Eclipse Foundation account. If you have an Eclipse Foundation account and a signed ECA-equivalent document, there are ways to validate the users and email addresses associated with a commit.
</p>
<p>
Below are 3 sample commands that will display the committer and author emails for a given commit or range. The first command shows the latest commit, while the second command will show results for a given commit, replacing `&lt;SHA&gt;` with the commit SHA. The last example will render a range of sequential commits. As is, it will show the last 5 commits starting from HEAD for the current branch. Both sides of the range can be replaced with commit SHAs to represent a different range.
</p>
<code>
<span>git show -s --format='Commit: %h, Committer: %ce, Author: %ae</span>
<br>
<span>git show -s --format='Commit: %h, Committer: %ce, Author: %ae' &lt;SHA&gt;</span>
<br>
<span>git show -s --format='Commit: %h, Committer: %ce, Author: %ae' HEAD...HEAD~5</span>
</code>
</div>
</div>
</div>
</div>
{#else}
<div class="panel panel-success">
<div class="panel-heading"><i class="fa fa-check" aria-hidden="true"></i>
Loading