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
1 answer

Git: Undo revert on local file in Aptana Studio

I have accidentally clicked on "Revert" option over the wrong file in Aptana Studio losing every single change I made on that file. The thing here is that I DO need that file because I can't remember every single change I made... So in order to get…
0
votes
0 answers

Accidentally deleted my rails layout

I am creating an app and had my layouts up and running nicely. I ended up adding another migration scaffold for this geocode deal. After getting errors, I found out that I need to add the rails g nifty:layout to fix the issue. This fixed my issue…
Awhitey98
  • 167
  • 1
  • 2
  • 14
0
votes
1 answer

C# revert to previous version

My developer did not save the stable version of C# application( lets say v12) that we are developing. Now after bunch of enhancements we are at V20, but the application has become crap at v20. So I asked the developer to revert back to v12, but the…
zennni
  • 1,397
  • 15
  • 12
0
votes
4 answers

How to delete corrupt file in git commit

I accidentally committed a file to my git repo that was corrupt. The corruption happened when I was working on my laptop and the batteries died down. I didn't recognize at once that this ended up in a file which consisted of weird symbols only.…
absurd
  • 1,035
  • 3
  • 14
  • 35
0
votes
1 answer

replace all content with checkboxes and revert on cancel in jQuery

First Name
Last Name
edit
When pressing edit, I would like the content inside .first and .last to be replaced with a textbox with the content of the…
Jacob Raccuia
  • 1,666
  • 1
  • 16
  • 25
0
votes
1 answer

Multilanguage C# user interface, Arabic language

I am developing a multi-language user-interface in C# and have a problem with the Arabic language: I inverted all the components of the UI, but I am not able to write the text from right to left. I am not sure whether it is possible or there is…
Mikael
  • 183
  • 3
  • 4
  • 11
0
votes
2 answers

Function revert with jquery

I have a little question. Is there any possible to revert function with jquery? I have some click function with actions in the middle of it. Can i revert this elements to condition before click? Thx 4…
Lukas
  • 7,384
  • 20
  • 72
  • 127
0
votes
1 answer

How to manage a map of unsaved entities in Hibernate session?

On my entity (myGroup : Group) I have a collection property (members : HashMap) and I want to allow the user to add multiple new (unpersisted) GroupMembers to the myGroup.members map. The reason why I am using a hashmap for the…
Lisa
  • 4,333
  • 2
  • 27
  • 34
0
votes
2 answers

SVN error after first checkout

After the first check out, I use "svn status", it show the strange error (2 lines with the same content): ! W_DELIVERABLES/20110715/ソースコード_20110715.zip ! W_DELIVERABLES/20110715/ソースコード_20110715.zip Then I try to revert: svn revert -R…
vietstone
  • 8,784
  • 16
  • 52
  • 79
0
votes
4 answers

How to revert back in git?

I revert my code to previous version, now I want to revert it back to my latest version. How can I do that ? Thanks
zjffdu
  • 25,496
  • 45
  • 109
  • 159
-1
votes
2 answers

convert decimal to binary. i want to revert print digits

n = int(input()) print ("conversion of {} to decimal is :".format(n) ) import math def conv(n): while n!=0: x= n%2; print (int(x) , end=" ") n=int(n/2) conv(n) I want to revert print digits. in this code, I try to…
-1
votes
1 answer

can't pull from another remote after reverting merge from wrong branch

I don't want to duplicate, but I don't see any questions/answers that exactly fit my situation. So our team has to work with another team. I thought I was supposed to merge a feature branch of theirs into our release branch. Turns out it wasn't the…
icartus
  • 9
  • 2
-1
votes
2 answers

Undo a completed pull request

I am new to git, there is a master branch in my repo and I sent a pull request from branch A. Now by mistake I made a pull request to master and completed it by mistake. I have local backup (outside git backup) of branch A. Can I undo the master…
M. M. Farhad
  • 39
  • 1
  • 7
-1
votes
1 answer

Converted User file to .exe, now I don't know how to revert it back

I've been writing some code in Python, and then I wanted to convert it to .exe file, so I went to Youtube, and searched for tutorial. Then I went to PyCharm Terminal, and I wrote : pyinstaller --onefile -w " " Exactly like this, but I forgot to put…
DEADY
  • 1
-1
votes
1 answer

Is there anyway to revert commit to source cod

I'm new to the game ( around 1 month ) I accidentally pressed Start debugging and now my HTML code is messed up like this. Is there any solution to revert this. thank you so much :)