Top "Undo" questions

Undo is a command in many computer programs.

How to perform the TFS-equivalent of 'Undo pending changes'

How do I perform the equivalent of the TFS 'Undo pending changes' in Git, on one or multiple files? That …

git version-control undo
Vim undo: undo changes after file write

In my code on vim, I did a lot of changes and then did a ZZ (save and exit). But …

vim undo
How do I make a DataGridView immediately commit edits?

I have a master-detail layout with a section of popup menus (the Details) and a section with a DataGridView which …

c# datagridview master-detail undo
How do I restore a previous version as a new commit in Git?

First, I have seen the answer to this question here before, but it is buried by so many "answers" which …

git undo
How to undo all added files in Mercurial

Say I type hg add in Mercurial, and there a bunch of untracked files in my working directory that are …

mercurial add undo
Undoing specific revisions in Subversion

Suppose I have a set of commits in a repository folder... 123 (250 new files, 137 changed files, 14 deleted files) 122 (150 changed files) 121 (renamed …

svn undo cherry-pick
How to design undo & redo in text editor?

Part of my project is to write a text editor that is used for typing some rules, compiling my application …

java text-editor undo undo-redo redo
What are the differences between 'revert', 'amend,' 'rollback', and 'undo' a commit?

Although I use Git pretty often, I'm still a beginner. Sometimes, I make a mistake but spot it only after …

git rollback undo git-revert git-amend
How do I create "undo" in C++?

I need to create a function that undoes the previous task/addition/change. How do I do this in Borland …

c++ function undo borland-c++
Implementing undo

I'm creating a map editing webapp where we can create and edit polylines, polygons etc. I've some trouble finding informations …

javascript user-interface dom-events undo