Questions tagged [revert]

Revert generally refers to operations that put a system, environment, or application into a previous state.

Revert generally refers to operations that put a system, environment, or application into a previous state.

559 questions
0
votes
2 answers

How to get back modified file after git checkout and git pull?

I've modified a file, then I want to get latest version from remote. So I run git checkout to revert the file, and run git pull to get latest version. After that, I found that I need the modification of the file. Is it possible to get it back?…
Dong
  • 911
  • 2
  • 9
  • 25
0
votes
1 answer

Implementing revert option jQuery

I am trying to implement a revert() option inside my website but the implementation does not show any result. This is what I have so far: $('.harm > text:nth-child(1) > tspan:nth-child(1)').each(function(){ $this = $(this); // Store the…
0
votes
2 answers

WPF Undo Redo Property System to highlight in red color if value has changed

I have a following requirement for a very complex UI. (Complex here means there are lot of controls in the form [approximately 100]). I am using MVVM (if my problem requires it to slightly go away from MVVM I am ok with it) My question is for…
0
votes
0 answers

How to perform revert in intellij?

There are many actions that has been done by plug-in or user. I want to revert them, How to revert the actions programmatically.
Aarti
  • 3
  • 3
0
votes
1 answer

Git merge one branch to another without one particular merge

I am using git. I have 3 branches master(m), feature1(f1) and feature2(f2). --------------------- m        |       |        |         ------- f1          ------------- f2 I have merge f1 into f2. and then reverted the merge and…
shubham garg
  • 105
  • 8
0
votes
2 answers

Is there an easy way to revert the changes that SQL Azure Data Sync Tool does to a local database?

I tried using the SQL Azure Data Sync Tool and successfully transfered a local database from my dev machine to a SQL Azure account. However, later on I noticed that the tool has silently made a bunch of changes to my local database - definitely not…
tishon
  • 650
  • 6
  • 14
0
votes
1 answer

How do I undo committed changes on Git?

I'm trying to restore my stable tag by removing the most recent commit. I ran this command: git revert e64218b5d415419043002e67115f81bff05bde0e This appeared: error: Your local changes would be overwritten by revert. hint: Commit your…
0
votes
1 answer

Re-merge reverted changes from a branch into master on Github?

I have two branches, bb and master. I worked on bb, made some changes, pushed them to Github, and made a pull request that I merged into master. I then saw a problem with a production app and thought there was a problem with the changes in bb, so…
dslack
  • 835
  • 6
  • 17
0
votes
0 answers

Eclipse, Set Version to Revert To

I'm using eclipse to write a small game and I now realize I want to make a big change to the core of my program. What is the best way to save two versions of the same code separately (if something goes wrong) and test them side by side? Is it a good…
Ivar Eriksson
  • 863
  • 1
  • 15
  • 30
0
votes
1 answer

in Git, once commited folder disappears on checkout

I'm new to Git and here's my problem: I accidentally added to commit a folder with files essential to my project but unchanged (say, Downloaded/). I didn't track this folder before, it just stayed untouched from commit to commit. Now, after this…
Natalia Ivanova
  • 60
  • 1
  • 10
0
votes
1 answer

Where do deleted files go in SVN?

I just removed some files by using svn --force delete path/folder copy. However, the space between folder and copy made it think it had to delete multiple things, so now it removed my original folder. I hadn't versioned my original folder yet, so…
Rvervuurt
  • 8,589
  • 8
  • 39
  • 62
0
votes
0 answers

How do I get back a directory that was deleted from svn and commited

I have tried to search for a way to resolve this and have come up with nothing so far. I made changes to certain files in a directory. I then performed an svn add and svn commit for those files I changed. Then (by accident) I deleted the directory…
T Rawls
  • 3
  • 4
0
votes
1 answer

How do I get files back from the repo?

I svn rm-ed some files in my local working copy. I have not svn ci-ed anything yet and I'd like to undo my scheduled removals and get the files back, svn revert myfile1 myfile2 followed by a svn up didn't help. How can I get the files back from…
stdcerr
  • 13,725
  • 25
  • 71
  • 128
0
votes
1 answer

Cannot revert after merge in Git

This is my situation. I'm working on the MiniMaxAB branch (green line) I accidentally merged a branch (purple) into mine (green) and pushed it. Which is stupid (i just started learning git) and bad for our goal. Now i would love to revert this and…
Alberto Fontana
  • 928
  • 1
  • 14
  • 35
0
votes
2 answers

rename file and replace old file name with file from previous revision in Subversion

I have a Subversion branch checked out using TortoiseSVN in Windows. I have a file, call it myfile.txt, that I want to rename, say to mynewfile.txt. I want to keep myfile.txt around, however, and just revert it back to a previous revision, say…
Sarah Vessels
  • 30,930
  • 33
  • 155
  • 222