Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Orion/Documentation/User Guide/Reference/Git Commit page"

(Opening the Git Commit page)
(Git Commit details)
Line 13: Line 13:
 
== Git Commit details  ==
 
== Git Commit details  ==
  
The <b>Details</b> section includes all the usual Git commit details such as author, committer, summary, and parent commit. In the <b>Tags</b> section there are corresponding tags for the commit and actions to remove or add new ones.
+
The <b>Details</b> section includes all the usual Git commit details such as author, committer, summary, and parent commit. In the <b>Tags</b> section, any tags on the commit are shown, and actions for removing tags or adding a new tag are available.
  
 
[[Image:Orion-git-commit-details.png|Git commit details]]
 
[[Image:Orion-git-commit-details.png|Git commit details]]

Revision as of 16:22, 16 October 2012

Git Commit page

The Git Commit page allows you to see a detailed description of a single Git commit. This page includes all the usual Git commit details and shows in-line diffs for commit changes. You can also perform operations on commits from this page, such as tagging and cherry-picking the commit into your current active branch.

Opening the Git Commit page

To open the Git Commit page, click on any commit link in the Git Log, Git Status, or Repositories page.

You may also use the Open Commit command (Ctrl+Shift+H) from Git Log or the Repositories page, which will open the commit page for the given commit name (sha1).

Open commit command dialog

Git Commit details

The Details section includes all the usual Git commit details such as author, committer, summary, and parent commit. In the Tags section, any tags on the commit are shown, and actions for removing tags or adding a new tag are available.

Git commit details

Git Commit diffs

The Diffs section shows an in-line comparison of all the file changes that make up the commit. Click Compare to see a change in the side-by-side compare editor or Working Directory Version to see the current file version in the editor.

Git commit diff

Back to the top