Undo is a command in many computer programs. It erases the last change done to the document reverting it to an older state. In some more advanced programs such as graphic processing, undo will negate the last command done to the file being edited.
498
votes
7answers
152k views
Git undo last commit
I accidentally added the wrong directory containing my files. Instead of adding a .java file, I added the directory containing the .class file. How can I undo this action?
151
votes
6answers
27k views
Undoing a git rebase
Does anybody know how to easily undo a git rebase?
The only way that comes to mind is to go at it manually:
git checkout the commit parent to both of the branches
then create a temp branch from ...
116
votes
9answers
48k views
git: undo a merge?
Within my master branch, I did a git merge some-other-branch locally, but never pushed the changes to origin master. I didn't mean to merge, so I'd like to undo it. When doing a git status after my ...
78
votes
5answers
28k views
How do I revert one file to the last commit in git?
I have a git repository, After the last commit, I modified a bunch of file. but I want to undo the changes to one of these file, as in reset it to the same version of itself that's in the repository, ...
60
votes
17answers
7k views
Design Pattern for Undo Engine
I'm writing a structural modeling tool for a civil enginering application. I have one huge model class representing the entire building, which include collections of nodes, line elements, loads, etc. ...
53
votes
3answers
7k views
How to undo “git commit --amend” done instead of “git commit”
I accidentally amended my previous commit. The commit should have been separate to keep history of the changes I made to a particular file.
Is there a way to undo that last commit? If I do something ...
40
votes
5answers
5k views
How is VIM's undo tree used?
This answer says:
Vim's undo/redo system is unbeatable. Type something, undo, type something else, and you can still get back the first thing you typed because Vim uses an undo tree rather than a ...
36
votes
3answers
9k views
Undoing a commit in TortoiseSVN
I commited a bunch of files (dozens of files in different folders) by accident. What is the easiest, cleanest (and safest!) way to 'undo' that commit w/o having to delete the files from my working ...
27
votes
4answers
14k views
svn undo delete before commit
If you delete a directory from a SVN working copy, but haven't commited yet, it's not obvious how to get it back. Google even suggests "svn undo delete before commit" as a common query when you type ...
23
votes
5answers
9k views
how do I do redo (i.e. “undo undo”) in vim
In vim, I did too much undo.
How do I undo this (i.e. redo)?
22
votes
4answers
4k views
Is there a way to recover from an accidental “svn revert”?
I managed to shoot myself in the foot this morning by doing the following:
Started working on a change to my project
Made a bunch of edits to a bunch of files
Realized that my approach was all ...
18
votes
2answers
335 views
Skip undo step in Vim
Let's say I'm at state A in my document. I then make changes B, C, and D (in order).
Is there a way I can keep changes B and D, but skip C?
Or, let's say I'm at state A in my document. I make ...
16
votes
6answers
3k views
Force IE contentEditable element to create line breaks on Enter key, without breaking Undo
On Internet Explorer, a contentEditable DIV creates a new paragraph (<p></p>) each time you press Enter whereas Firefox creates a <br/> tag.
As discussed here, it is possible to ...
12
votes
4answers
908 views
What's the best way to implement gmail style “undo” in Rails?
I think it important to have an "undo" method ala gmail when destroying records instead of displaying an annoying popup that says, "Are you sure?".
The way that I've implemented this is to have a ...
11
votes
2answers
208 views
Is there a block undo in VIM?
In Vim, is there a way to select a block of text and use undo to only undo changes to that block of text?
Let's say I rewrite a function, then go and make some changes elsewhere in my file. ...
9
votes
5answers
844 views
Undo for a paint program
I am looking into how to write a paint program that supports undo and seeing that, most likely, a command pattern is what I want. Something still escapes me, though, and I'm hoping someone can ...
9
votes
2answers
222 views
Fast undo/redo for bitmap editor when memory is limited?
I'm trying to write a bitmap editor for a mobile device (i.e. a limited version of Photoshop). The user's document consists of ~4 bitmaps around 1000x500 in size each.
I want a robust and efficient ...
8
votes
1answer
282 views
How can I do git merges in such a way that they are easy to roll back?
There is lots of talk about how it's not easy to "undo" a merge in git. Short version: if you undo a merge commit, it also tells git to never merge those changes back in in the future.
Is there ...
8
votes
3answers
342 views
How to implement an “undo” feature using Python/Django
I have a Django application where I allow a user to import a CSV file with contact data (membership #, first name, last name, etc).
When they import the file, the application checks the database for ...
8
votes
2answers
599 views
Abort a merge in mercurial
I goofed up a merge. I'd like to revert then try again.
Is there a way to revert a merge before it is commited.
hg revert doesn't do what I'd like, it only reverts the text of the files. Mercurial ...
8
votes
8answers
1k views
How to design undo & redo in text editor?
Part of my project is write text editor that used for type some rule and my application compile and run it. Writing compiler was end and release beta version. In final version we must add undo and ...
8
votes
3answers
6k views
svn: How to undo a merge (without commit)?
I just did an svn merge to merge changes from the trunk to a branch:
$ svn merge -r328:HEAD file:///home/user/svn/repos/proj/trunk .
--- Merging r388 through r500 into '.':
A foo
A bar
C ...
7
votes
2answers
183 views
Excel add-in with seamless Undo: possible?
I am considering implementing an Excel add-in using COM (not VBA) that will manipulate data in the worksheet.
I am going to need this add-in to seamlessly integrate with the Undo stack.
More ...
7
votes
2answers
850 views
7
votes
3answers
865 views
QT : Using State Machine for UI interactions?
Greetings,
We are developing a scientific QT Application which detect the border of a cell.Please refer to following prototype snapshots.
http://i27.tinypic.com/25tub9v.png
...
7
votes
2answers
335 views
undo/redo with cascading deletions
I'm trying to implement an undo/redo feature into my application, using the Command Pattern. I'm facing a problem.
To illustrate it, let's imagine you can create with my application 2D profiles (as ...
6
votes
3answers
587 views
Git pull into wrong branch
Myself and one other developer had been merging and pushing our work to a non-master branch called toolwork. That way, we didn't impact the rest of the team. My topic branch was called DPM-93 and my ...
6
votes
5answers
699 views
how to implement undo/redo operation without major changes in program
Hi
I'm about to add new functionality to application which I'm currently writting. I need to write a undo/redo fnctionality. However 90% of our application is ready and I don't know what is the best ...
6
votes
4answers
424 views
How do I get fine-grained undo in Vim
I find Vim's undo to be a bit too coarse. E.g. if I type something like this:
a // to go into edit mode
to be or not to ve
<esc> // to exit insert mode
Oops! I made a typo. I want to start ...
6
votes
4answers
523 views
Photoshop Undo System
The question probably applies to drawing systems in general. I was wondering how the undo functionality is implemented in PS. Does the program take snapshots of the canvas before each operation? If ...
6
votes
3answers
8k views
Building undo into an Excel VBA macro
Excel macros don't seem to allow the use of "undo" after running them. Is there any way to bake undo functionality into a VBA macro in Excel?
6
votes
1answer
1k views
.NET RichTextBox undo
I'm using a RichTextBox in WinForms 3.5 and I found that when I programmatically edit the contained text, those changes are no longer available to the built in undo functionality.
Is there a way to ...
5
votes
3answers
2k views
NSUndoManager undo Not Working With Core Data
I am trying to create an iPhone application where the user can add entries. When he presses a new entry, a box will popup asking him for some information. Then he can either press "Cancel" or "Save" ...
5
votes
6answers
2k views
WPF TextBox Interceping RoutedUICommands
I am trying to get Undo/Redo keyboard shortcuts working in my WPF application (I have my own custom functionality implemented using the Command Pattern). It seems, however, that the TextBox control ...
5
votes
3answers
2k views
Undo inside WPF M-V-VM, how does it fit?
In my previous projects, I have already implemented undo system in c++, and I know how it work. I am also aware of the Command pattern.
I will be implementing a C#/WPF desktop application and would ...
5
votes
3answers
2k views
How to undo an 'svn copy'
I've accidentally overwritten an old branch by copying trunk over it using 'svn copy'. More specifically, for every release, trunk is branched and kept as a tag, using:
svn copy ...
5
votes
3answers
1k views
Undo with GTK TextView
I'm trying to keep dependencies to a minimum for a program I contribute to, it's a small text editor.
GTK Textview doesn't seem to come with a built-in undo function. Is there any reference ...
4
votes
3answers
172 views
Why is there no undo/redo in Git?
As far as I know, when you want to undo something in Git you have to explicitly find the command to undo whatever it is you've done and issue it. For instance, one way among many to undo a commit and ...
4
votes
2answers
172 views
C#: Unable to undo inserted text
I am programatically adding text in a custom RichTextBox using a KeyPress event:
SelectedText = e.KeyChar.ToString();
The problem is that inserting text in such a way doesn't trigger the CanUndo ...
4
votes
3answers
385 views
Best design pattern for “undo” feature [closed]
Possible Duplicate:
Design Pattern for Undo Engine
In general, how do you deal with supporting an "undo" feature in your application? I have worked on web apps and desktop apps alike, and I ...
4
votes
3answers
187 views
“Undoing deletes” in webapplication?
I have seen more and more of the websites that offers a undo option after pressing a delete button. How is the logic done behind the button?
Is the item deleted by javascript and "dissapears" from ...
4
votes
3answers
688 views
Visual Studio : exclude outlining from undo/redo stack
There's something really annoying in Visual Studio : where I expand or collapse a method or code region, this action is pushed on the undo stack. So if I edit some code in a method, then collapse that ...
4
votes
3answers
2k views
Undo in WPF Bindings
How to provide an undo / redo using bindings in WPF?
e.g.
You implement a master-detail view with bindings. After editing your changes were saved automatically using binding. Then you want to undo ...
4
votes
1answer
412 views
Undo journaling: focusing the control being undone
I'm writing an undo journal for my WPF data-entry screen, which will track changes across all the controls. When the user selects Undo, I want to not only revert the latest change, but put focus back ...
4
votes
3answers
591 views
Hide certain actions from Swing's undo manager
I am trying to write a JTextPane which supports some sort of coloring: as the user is typing the text, I am running some code that colors the text according to a certain algorithm. This works well.
...
3
votes
4answers
76 views
Hg: delete latest commits
I've used Git in the past and I'm a Hg noob:
I have following repository structure:
o [> default] commit A
|
o commit B
.
.
.
o <a-tag]
|
I've updated to the commit with the a-tag and ...
3
votes
3answers
91 views
C# detect if calls were in the same UI action
I have some nice, working edit-undo functionality in my winforms application. It works using a CommandStack class, which is two Stack<IStateCommand>s (one for undo, one for redo). Each command ...
3
votes
1answer
545 views
Using vim's persistent undo?
One of vim 7.3's new features is 'persistent undo', which allows for the undotree to be saved to a file when exiting a buffer. Unfortunately, I haven't quite been able to get it properly enabled, or ...
3
votes
2answers
351 views
Jquery Undo last change to DOM
What is the easiest way to undo last change done to Dom. let's say i appended an image or div or we made changes to any of the elements and i want to undo the last thing that affected the dom.
3
votes
1answer
380 views
undo a git merge, but keep later changes (and rewrite history)?
I can't seem to find this question anywhere and I'm a little puzzled whether this just isn't possible or maybe no one is stupid enough to do what I have done. But here goes.
Also if anyone has ...