Tagged Questions
The revert tag has no wiki summary.
114
votes
9answers
47k 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 ...
37
votes
13answers
30k views
Roll back or revert entire svn repository to an older revision
I messed up on my SVN repository and now need to revert the entire repository from revision 28 to 24 and don't want to deal with diffs or conflicts. Is there a quick and simple way to do this? I've ...
21
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 ...
19
votes
4answers
3k views
Why Subversion skips files which contain the @ symbol?
when I try to execute command like this (from a command-line or Perl script - it doesn't matter):
svn revert "build\myfile@test.meta"
SVN skips this file and outputs:
Skipped 'build\myfile'
I ...
19
votes
10answers
7k views
How do I revert a big change in CVS?
One of my colleagues has totally messed up the contents of a directory in our main CVS repository. I need to just revert the whole module to the state it was in at the end of last year. What's the ...
15
votes
2answers
4k views
Undo a particular commit in git
What is the simplest way to undo a particular commit that is:
not in the head or HEAD
Has been pushed to the remote.
Because it is not the latest commit,
git reset HEAD
doesn't work. And ...
13
votes
5answers
2k views
Reverting a single file to a previous version in git
Is there a way to go through different commits on a file.
Say I modified a file 5 times and I want to go back to change 2, after I already committed and pushed to a repository.
In my understanding ...
12
votes
4answers
904 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 ...
10
votes
2answers
13k views
SVN Synchronize vs Update to Head (subclipse)
I'm fairly new to both Subversion and Subclipse and am seeing some issues that lead me to believe there is a difference between updating to head, and synchronizing. Specifically I find that when I try ...
9
votes
3answers
2k views
Can't Push After git reset --soft HEAD^
Hey guys, just now I committed and pushed something (yes, my mistake on the push) that I decided I should 'revert' or 'undo'. So I was told to issue git reset --soft HEAD^ on my end, and I figured ...
9
votes
2answers
3k views
Re-doing a reverted merge in Git
I have run into a bit of a problem here: I had a problem-specific branch '28s' in git, that I merged in the general 'develop' branch. Turns out I had done it too fast, so I used git-revert to undo the ...
8
votes
3answers
444 views
git revert changes to a file in a commit
I want to revert changes made by a particular commit to a given file only.
Can I use git revert command for that?
Any other simple way to do it?
7
votes
1answer
259 views
What is difference between “git checkout -f” and “git reset --hard HEAD”?
I need to revert local changes for deployments. (I'd used svn revert for this in old skool SVN days.)
And im using git reset --hard HEAD for this. (Also git fetch and git merge origin/$branch --no-ff ...
7
votes
1answer
278 views
Is there a difference between git reset --hard HEAD and git checkout .?
If I make changes to the working tree and have not yet committed, and I would like to revert the changes I have made, is there a difference between
git reset --hard HEAD
and
git checkout .
?
7
votes
2answers
938 views
Revert a range of commits in git
How can I revert a range of commits in git? From looking at the gitrevisions documentation, I cannot see how to specify the range I need. For example:
A -> B -> C -> D -> E -> HEAD
I ...
6
votes
4answers
10k views
Reverting single file in SVN to a particular revision
I have a file as shown below in an SVN repo that I would like to revert to a previous version. What is the way to do this in SVN? I want only downgrade this particular file to an older version, not ...
5
votes
4answers
301 views
GitHub - How to revert changes to previous state
I am using Git Hub as my remote repository.
I have already pushed 5 commits to the server and want to revert back to the state before the those commits.
If the commit number is 3425661dba2aadccdbab, ...
5
votes
3answers
2k views
git: better way for git revert without additional reverted commit
I have a commit in a remote+local branch and I want to throw that commit out of the history and put some of them into an own branch.
Basically, right now I have:
D---E---F---G master
...
4
votes
0answers
153 views
JQuery reverts to original CSS after keyup [closed]
I have the following function:
function setDropLinkFocus(divID){
$("#" + divID).css("font-weight", "Bold");
}
which fires on both a keyup event and a mouseover event. On mouseover, it excutes ...
4
votes
1answer
63 views
Deleted some files being versioned by Mercurial, how do I commit those deletes?
I deleted a few files on my local filesystem which I am not using anymore and are just junk. Unfortunately they are tracked by version control (Mercurial). Now I see a large red '!' saying it is out ...
4
votes
1answer
293 views
Git merge, then revert, then revert the revert
So we've gotten a git branch into a tricky state:
Two branches:
* master
* other_branch
Last week someone accidentally merged other_branch (prematurely) onto master and pushed to origin. We noticed ...
4
votes
3answers
437 views
Make git master HEAD point to current HEAD of branch
I have to admit that I haven't played with gits advanced features but on my current project I had to.
The situation:
Someone tried to implement some features and comitted them to the master, now I ...
4
votes
2answers
575 views
Git exclude a commit in a branch
I have a commit, I have stored in a branch, because this should go only to a specific box.
I have merged it to the branch master, but not the branch dev, that I use locally.
Now, by mistake I merged ...
4
votes
2answers
2k views
Mercurial: Revert a single hunk
How do I revert a single hunk in Mercurial, similar to the way it's done in darcs, i.e. it asks me for each hunk and file whether I want to revert it? Is it possible using TortoiseHg?
Thanks
3
votes
1answer
154 views
jQuery Draggable + Sortable - How to reject a drop into the sort?
I have a sortable list of videos and a draggable set of videos. Basically I want to make sure that the videos dragged in are not in the first 5 minutes of video. As the video lengths vary I want to ...
3
votes
3answers
2k views
Git: Undo last commit/merge
Hey guys, i have a litte messed up my git repo. I worked on a feature in a separet branch. After finishing the work, i switched to the master to merge it into. But my partner pushed a few files with ...
3
votes
2answers
1k views
Where is the 'Revert' option in Xcode 4's Source Control?
I'm using SVN in Xcode 4 as my source control; but can't see any option to revert to an older revision? Either a 'revert' or an 'update to revision' command? The 'Update' option always seems to update ...
3
votes
1answer
359 views
reverting push'd git commit
I've got a repo with two branches-- master and dev. I was working on the master branch and pulled, and got a message that the repo was up to date. I committed my changes, and pushed to the remote repo ...
3
votes
1answer
160 views
What would it take to get auto-revert-mode to actually work in my dired buffer?
Apparently auto-revert-mode is supposed to work in dired buffers.
I had never heard of this, but the doc says it works.
Then I read a little more and found some fine print:
Auto-reverting Dired ...
3
votes
6answers
239 views
Is there any way “svn unrevert”?
Ack! I just mistakenly ran "svn revert somefile" with the wrong filename pasted in. Now my nicely modified file is gone!
I'd like a "svn unrevert" command. AFIK there's no such thing. What is ...
3
votes
2answers
4k views
how to revert position of a jquery UI draggable based on condition
I have an element which is draggable and an element which is droppable. Once the dragged item is dropped on the dropzone I am trying to execute the following jquery psuedo code:
if(draggedelement == ...
3
votes
4answers
175 views
Revert a file on SVN repository but keep local version
I accidentally committed some changes to the repository that were not complete. I do not want to lose my local changes, but i want to revert the file in the repository to where i was before i ...
3
votes
3answers
3k views
Git: Remove specific commit
I was working with a friend on a project, and he edited a bunch of files that shouldn't have been edited. Somehow I merged his work into mine, either when I pulled it, or when I tried to just pick the ...
2
votes
2answers
67 views
Exclude some files on svn command line commit (not svn:ignore)
I'm developing with many people.
I check out remote repository, get 3 file. After edit, run:
svn status
It shows:
M file_1
M file_2
M file_3
Now, I want to commit only two file: file_1, file_2, ...
2
votes
1answer
20 views
How to git-revert only partially as in git-add -p?
I noticed the introduction of an error in a previous commit that also contains some otherwise correct changes (which, at that time, seemed related enough to put all into a single commit1). Now if I ...
2
votes
3answers
67 views
TortoiseSVN - Undoing a Revert
I wanted to look at (and not modify) older versions of a few files in my repository, so I went and reverted those files. Now I'm trying to get those files back to the most recent version so that they ...
2
votes
3answers
233 views
Eclipse: Difference between 'Revert' and 'Override and Update'
What is the difference between 'Revert' and 'Override and Update' options from Eclipse (team synchronization - SVN (Workspace) - Outgoing mode)?
Thanks in advance.
2
votes
3answers
195 views
git revert back to certain commit
how do i revert all my files on my local copy back to a certain commit?
commit 4a155e5b3b4548f5f8139b5210b9bb477fa549de
Author: John Doe <Doe.John.10@gmail.com>
Date: Thu Jul 21 20:51:38 2011 ...
2
votes
2answers
79 views
I want to revert my master branch to state 8 commits ago
I just realized I introduced a memory leak somewhere in the last 8 commits.
Easiest solution is to revert to 8 commits ago, then carefully add the changes
back in. What is the easiest way of doing ...
2
votes
1answer
449 views
MVVM-Light: Is this the best way to validate and revert a value in the View?
In my View I have TextBoxes like this one:
<TextBox x:Name="tBoxShippingWeight" Text="{Binding ShippingWeight, Mode=TwoWay}" InputScope="Number" />
When the user enters a value I do a basic ...
2
votes
3answers
357 views
How do you revert directories in an SVN working copy?
I want to revert a directory and all sub-directories in an SVN working copy so they match the repository but I don't want to touch any files inside those directories.
One of my SVN applications ...
2
votes
1answer
528 views
git revert merge - neither mainline looks correct
I am trying to revert a faulty merge, but the revert changes from both commands do not look right.
This is how I made the merge commit:
# merge master into branch:
git checkout branch
git merge ...
2
votes
3answers
270 views
How can one retroactively branch in subversion, or how can an one record a revert of a merged patch
Part of the development I have done on a project can not be deployed, and should have been done in a separate branch. I have merged in the backwards changes (via tortoise's "revert changes from this ...
2
votes
1answer
112 views
Git Reverting a big PUSHed file
I accidentally added (git add *) a big file (200+ MB) to a git repository. I commit the changes and pushed it.
When I tried to pull changes on some other copy, it was taking too long. I canceled the ...
2
votes
3answers
331 views
How do I revert the Subversion repository, not my working copy, to a specific revision?
I'm relatively new to Subversion, coming from Source Safe, and it's driving me nuts. Using the Tortoise interface, Commit kept showing me .java files in my bin directory which it said were "missing" ...
2
votes
1answer
1k views
Subversion: Can trunk be reset to previous revision after branching/tagging?
I have many projects depending on each other in trunk. I made several commits
which led to dependency problems.
I tagged /trunk to /tags/trunk-experimental
and now want to "revert" the last N changes ...
2
votes
1answer
2k views
return subversion working copy to an old revision
I had some problems with my subversion server and i had to restore it from backup but it is an older one.
For example i have the server at revision 400 but my working copy is at 405.
How can i get my ...
1
vote
3answers
26 views
How do I revert to the most revision in SVN for all files in a folder?
Let's say a month ago I checked in 100 files to SVN which were at revision 100.
Today I checked in all the 100 files to SVN, say at revision 200.
However in between then about 50 files were ...
1
vote
1answer
23 views
revert to previous configuration from command-line?
I have a problem running eclipse. After installing 3 plugins (from TeXlipse),
i have an error:
!ENTRY org.eclipse.osgi 4 0 2012-01-21 13:57:28.430
!MESSAGE Application error
!STACK 1
...
1
vote
1answer
39 views
how to restore last saved code in eclipse?
In Eclipse, I accidentally SVN update my code to HEAD version of the repository. My local code is what I want to keep, so how do I revert to that?
Tks.