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 Status page"

(Staging changes)
Line 16: Line 16:
 
== Staging changes ==
 
== Staging changes ==
  
Hover over any unstaged change to pop up all the available action icons. Then hover over the first action. You will see the tool tip as <b>stage</b>.  
+
Hover over any unstaged change to pop up all available action icons. Then hover over the first action. You will see the tool tip as <b>stage</b>.  
  
 
[[Image:Orion-status-page-stage-action.png]]
 
[[Image:Orion-status-page-stage-action.png]]
  
 
Click on the action to stage the change. The change is shown in the staged area.
 
Click on the action to stage the change. The change is shown in the staged area.
 +
 +
[[Image:Orion-status-page-staged-change.png]]
 +
 +
From the top-right corner of the unstaged area, you can also click on the <b>stage all</b> action to stage all the changes.
 +
 +
[[Image:Orion-status-page-staged-all-changes.png]]

Revision as of 13:36, 23 June 2011

The Git Status page provides a summary of the current state of a Git clone associated with your Orion account. This page shows changes in your working tree, staged changes that are ready to commit, and a summary of the current contents of the local and remote tracking branches. The title area indicates the repository and branch name you are currently viewing. Commands available on staged or unstaged files are shown to the right of each file when you hover over it.


Orion-status-page-overview.png

Types of changes

Excluding the conflicting cases, there are three types of changes: adding, changing and deleting. The types of changes are indicated by icons on the left of the files.

Orion-status-page-change-types.png

Viewing changes

Click any staged or unstaged change to open a comparison between the working copy and the state of that file in the most recent commit. You can also open a separate Compare page by clicking the Side by side compare button to the right of the file name. The compare page allows you to merge changes or perform further edits on your uncommitted changes.

Staging changes

Hover over any unstaged change to pop up all available action icons. Then hover over the first action. You will see the tool tip as stage.

Orion-status-page-stage-action.png

Click on the action to stage the change. The change is shown in the staged area.

Orion-status-page-staged-change.png

From the top-right corner of the unstaged area, you can also click on the stage all action to stage all the changes.

Orion-status-page-staged-all-changes.png

Back to the top