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

Git branches deleted

I was having three branches master, b1 and b2. I was working on branch b2. There was a common folder which was present in all branches. While deleting the folder I selected, delete from other branch also. This option deleted folder as well and other…
0
votes
1 answer

Git revert temporarily

I have a situation where I accidentally pushed an incomplete commit C1 to the remote branch. Now I want to revert the remote branch but temporarily, so that I can still work on the commit C1 locally and amend some more changes to it. I did, git…
Kevindra
  • 1,682
  • 3
  • 24
  • 45
0
votes
1 answer

Delete from history commits ahead of HEAD

In GitHub, I merged a pull request directly using the web interface. After pulling the merged pull request to my local, I noticed a critical bug in the code. So, I went back to github's website and reverted the pull request. This action generated a…
SusyP
  • 149
  • 6
0
votes
1 answer

How do I revert a git merge that had many commits

I have two branches new-ui and video-upload and I am trying to merge them. Before merging them though, I should have created a new branch that holds the result of both....to make sure that the merge result is what I am looking for. I didn't, so I…
marcamillion
  • 32,933
  • 55
  • 189
  • 380
0
votes
1 answer

How to revert/reverse/undo setSize() in Highcharts

Question asked because I spent a while trying to solve this and the answer isn't easily Google-able: If I've manually set the size of a chart how do I make it go back to how it was before I did so? (Question left deliberately ambiguous as I have…
Brondahl
  • 7,402
  • 5
  • 45
  • 74
0
votes
1 answer

Git: Unable to remove a "revert' commit

We are using git work flow with a develop branch for integration and feature branches for individual features. Created a feature branch via: git fetch git checkout -b new-branch origin/develop (develop is our working integration branch) worked…
Adam
  • 85
  • 1
  • 8
0
votes
2 answers

Git reset and revert

I have accidentally merged the wrong branch into master, and pushed to origin. The problem is, that i have resetted the masterbranch to the last before commit-hash with git reset --hard xxx and also the origin with git push origin master --force but…
ninchen
  • 71
  • 8
0
votes
1 answer

Git Merge: having trouble with a basic merge

I'm new to Git so please pardon any shortsightedness. I'm trying to update my Master branch. I created a new branch called myWebsite, and it contains the changes I want to make. I've pushed it to GitHub, and my repo sees the branch. When comparing…
TCannadySF
  • 286
  • 7
  • 20
0
votes
1 answer

Keeping a huge file out of the repo that I committed but haven't synced

I accidentally committed a HUGE image to a repo when I meant to commit a smaller one. I don't want that in the repo from now on. I haven't synched yet. Using GitHub for Mac, I went in history and did "Roll back to this commit" but I don't think…
lotstolearn
  • 91
  • 10
0
votes
0 answers

Size limit on two connected sortable lists with animation on stop limit

I have six lists that are connected to drag and drop between. I have a main list with 35 entries with all the list items populating it. Then I five sub lists with seven entries that all start out blank. So, I'm wanting to sort the 35 items out…
trout0525
  • 41
  • 7
0
votes
1 answer

How can I commit/push changes to a "live" branch and then keep working on my "test/dev" branch?

I'm very new to working on larger projects and using any form of version control, so please bear with me. I have a project running on a local/intranet webserver. I'm using mercurial for version control with hgworkbench/turtoisehg as a GUI. So far…
Konadi
  • 182
  • 11
0
votes
1 answer

GitHub revert conflict is not a conflict, and can't be resolved

I am trying to make a revert, and it is saying I have unresolved conflicts. This is very strange because the conflict points to a single comment line. <<<<<<< HEAD // END product configuration | clong ======= // END SVG Product Configuration |…
Goose
  • 4,764
  • 5
  • 45
  • 84
0
votes
0 answers

Git revert a specific merge commit

I'm trying to figure out the best way to completely remove my merge commit from Master. So far what has happened is I merged my feature branch into Master, and pushed out those changes. Other Dev's have also merged in their feature branches to…
user2221830
  • 163
  • 2
  • 11
0
votes
2 answers

Python - techniques for reverting changes to a folder?

I am writing a package manager in python for users to install programs we write at work. When 'installing' a new tool (which is just a process of copying files/folders from locations on a server to the users' computer), it may fail before completion…
jramm
  • 6,415
  • 4
  • 34
  • 73
0
votes
1 answer

svn: How to revert somebody else's commit?

Argh, somebody (OK, my boss) added and commited all the files in his directory, meaning all the svn files: conf/, db/, format, hooks/, locks/... I'm using Tortoise, so I tried clicking on each one and doing revert, it said OK, but I still see all of…
dargaud
  • 2,431
  • 2
  • 26
  • 39