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 "EGit/New and Noteworthy/2.0"

(Staging View warn on amend of pushed commit)
m (Other Improvements: Uniform capitalization)
Line 36: Line 36:
 
== Other Improvements ==
 
== Other Improvements ==
 
=== History View Improvements ===
 
=== History View Improvements ===
* table layout was improved
+
* Table layout was improved
* new option to allow hiding email address of committer and author
+
* New option to allow hiding email address of committer and author
* incremental loading of history improves performance and significantly reduces memory footprint
+
* Incremental loading of history improves performance and significantly reduces memory footprint
* add command to rename branches
+
* Add command to rename branches
* new option to suppress displaying of additional Refs like FETCH_HEAD, ORIG_HEAD
+
* New option to suppress displaying of additional Refs like FETCH_HEAD, ORIG_HEAD
* new "committed date" column
+
* New "committed date" column
 
* Show commit in history view when annotation is selected. "Team > Annotations" now  shows/selects the commit in the history view when a revision is selected.
 
* Show commit in history view when annotation is selected. "Team > Annotations" now  shows/selects the commit in the history view when a revision is selected.
  
 
=== Staging View Improvements ===
 
=== Staging View Improvements ===
* supports content assist for file names and commit messages
+
* Supports content assist for file names and commit messages
* add command "Replace with HEAD"
+
* Add command "Replace with HEAD"
* support for discarding changes of non-workspace files
+
* Support for discarding changes of non-workspace files
 
* Staging View now uses the global IndexDiffCache, this reduces EGit's memory footprint and ensures consistency with resource decorations
 
* Staging View now uses the global IndexDiffCache, this reduces EGit's memory footprint and ensures consistency with resource decorations
 
* Option to show whitespace characters in Staging View and Commit Dialog
 
* Option to show whitespace characters in Staging View and Commit Dialog
Line 53: Line 53:
  
 
=== Repositories View Improvements ===
 
=== Repositories View Improvements ===
* for references, branches and tags show the abbreviated SHA-1 followed by the short message of the commit that SHA-1 points to.
+
* For references, branches and tags show the abbreviated SHA-1 followed by the short message of the commit that SHA-1 points to
* on branch nodes allow to show/edit branch configuration
+
* On branch nodes allow to show/edit branch configuration
* Git command group actions now also work when selecting one or several repositories in the Repositories View.
+
* Git command group actions now also work when selecting one or several repositories in the Repositories View
* simplified configure fetch and configure push dialogs
+
* Simplified configure fetch and configure push dialogs
* allow to fetch/push on remote nodes
+
* Allow to fetch/push on remote nodes
  
 
=== Configuration ===
 
=== Configuration ===
* enable using variables to set the default clone destination in the preferences. With this, it's now possible to configure it to always clone into workspace, using {{code|${workspace_loc}}}
+
* Enable using variables to set the default clone destination in the preferences. With this, it's now possible to configure it to always clone into workspace, using {{code|${workspace_loc}}}
* add configuration option for {{code|core.streamFileThreshold}} in preferences
+
* Add configuration option for {{code|core.streamFileThreshold}} in preferences
* configuration editor in preferences now supports editing configuration values directly in tree  
+
* Configuration editor in preferences now supports editing configuration values directly in tree  
  
 
=== Team Menu& Git Actions Toolbar ===
 
=== Team Menu& Git Actions Toolbar ===
* new command "Remove from Index" to enable unstaging staged changes from the team menu
+
* New command "Remove from Index" to enable unstaging staged changes from the team menu
* rename support for "Compare With > Previous Revision"
+
* Rename support for "Compare With > Previous Revision"
 
* Add merge button to Git Actions Toolbar
 
* Add merge button to Git Actions Toolbar
  
 
=== Miscellaneous ===
 
=== Miscellaneous ===
* Add Commit... and Reset... buttons to checkout conflict dialog.
+
* Add Commit... and Reset... buttons to checkout conflict dialog
 
* Add "Revert" action to Commit Editor
 
* Add "Revert" action to Commit Editor
  

Revision as of 10:39, 1 June 2012

EGit Features

Support for Eclipse-SourceReferences manifest headers

This adds extensions required to clone/import a plug-in's git repository using SCM URL from its MANIFEST.MF. To give it a try, open Plug-ins view, select a plug-in and click "Import As > Project from a Repository...". Then follow instructions in the wizard. Importing with a tag is not supported yet, see bug 367712.

Allow push of single Refs/Commits from Repositories & History Views

This adds a new SimplePushWizard which allows selecting a target remote and ref name. It then pushes out the selected Ref/Commit to the selected target ref.

Stash Support

  • Support to create stashed commits
  • Support to apply stashed commits to the index and working tree
  • Support for dropping stashed commits
  • New stash option in branch result dialog. This allows the to quickly stash any conflicting changes that are preventing a branch from being checked out.

Support for "workspace patches"

Workspace-aware patches include comments to tell the Apply Patch wizard about the target projects for individual diffs. They contain enough information to allow the wizard to decide which resources need to be patched.

Also allow to save patches in the workspace.

Preemptively close missing projects when switching branches

When checking out another branch look for projects that differ between the current branch, target branch, and working directory and close any projects not available on target branch before checkout begins.

Reopened projects are now also refreshed after being opened in order to keep the Eclipse resource model in sync with the working directory changes.


Other Improvements

History View Improvements

  • Table layout was improved
  • New option to allow hiding email address of committer and author
  • Incremental loading of history improves performance and significantly reduces memory footprint
  • Add command to rename branches
  • New option to suppress displaying of additional Refs like FETCH_HEAD, ORIG_HEAD
  • New "committed date" column
  • Show commit in history view when annotation is selected. "Team > Annotations" now shows/selects the commit in the history view when a revision is selected.

Staging View Improvements

  • Supports content assist for file names and commit messages
  • Add command "Replace with HEAD"
  • Support for discarding changes of non-workspace files
  • Staging View now uses the global IndexDiffCache, this reduces EGit's memory footprint and ensures consistency with resource decorations
  • Option to show whitespace characters in Staging View and Commit Dialog
  • Warns when amending a commit that is already pushed (when the commit is on a remote tracking branch)

Repositories View Improvements

  • For references, branches and tags show the abbreviated SHA-1 followed by the short message of the commit that SHA-1 points to
  • On branch nodes allow to show/edit branch configuration
  • Git command group actions now also work when selecting one or several repositories in the Repositories View
  • Simplified configure fetch and configure push dialogs
  • Allow to fetch/push on remote nodes

Configuration

  • Enable using variables to set the default clone destination in the preferences. With this, it's now possible to configure it to always clone into workspace, using ${workspace_loc}
  • Add configuration option for core.streamFileThreshold in preferences
  • Configuration editor in preferences now supports editing configuration values directly in tree

Team Menu& Git Actions Toolbar

  • New command "Remove from Index" to enable unstaging staged changes from the team menu
  • Rename support for "Compare With > Previous Revision"
  • Add merge button to Git Actions Toolbar

Miscellaneous

  • Add Commit... and Reset... buttons to checkout conflict dialog
  • Add "Revert" action to Commit Editor

GitHub Mylyn Connector Features

  • Add support for paging over starred gists

Bugs Closed

73 bugs and 17 enhancement requests were closed.

Back to the top