Git Reset Dialog Box
See Also
The Git Reset dialog box enables you to cancel changes and bring your repository back to a particular commit.
You can access the Git Reset dialog box by selecting a versioned project, file or folder and choosing Team > Git > Reset from the
IDE's main menu.
In the Git Reset dialog box, specify the following options:
- Revision. Specify the required revision by entering a commit ID, existing branch, or tag name in the Revision field or click Select to view the list of revisions maintained in the repository.
The following fields display information specific to the selected revision:
- Commit ID: A unique identifier of the specified revision.
- Author: A unique identifier of the specified revision.
- Message: A message specified during the commit of the revision.
- Options. Choose any of the reset modes below:
- Do Not Modify Index or Working Tree (--soft). Select to move HEAD to the specified commit and leave all changes in Index and Working Tree.
- Modify Working Tree (--mixed). Select to overwrite all changes in Index and leave changes in Working Tree.
- Update Index and Working Tree (--hard). Select to overwrite all changes that are made in your Index and Working Tree.
After you click Reset, the IDE discards changes in accordance with the selected option.
- See Also
- About Git Support
- Git Tasks: Quick Reference
Legal Notices