Tagged Questions
The git-revert tag has no wiki summary.
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 ...
12
votes
3answers
7k views
Undo change in git (not rewriting history)
I made a change in a script and committed it. Then I made a few other changes, and pushed them to a remote repository and such.
Then I realised that first change I mentioned was stupid, and want to ...
9
votes
4answers
4k views
Undoing a git pull --rebase
Hey I'm new to git and I need to undo a pull, can anyone help?!? So what I've done is...
git commit
git stash
git pull --rebase
git stash pop
this created a bunch of conflicts and went a bit ...
4
votes
2answers
233 views
Git: How to Undo commit *and* revert to last branch
Uh oh... I mistakenly committed a pretty complex change (including subdirectory and files renames) without really knowing what I am doing (or what Git would be doing).
I now want to undo everything ...
4
votes
3answers
421 views
Git - How to revert Uncommited Changes including files and folders?
Is there a git command to Revert All Uncommitted Changes in Working Tree and Index and to remove also New Files and Folders ?
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
4answers
167 views
Git Revert, Checkout and Reset for Dummies [closed]
Sorry, but this trio of git commands is taxing my intelligence.
Is it possible to set up a group wiki for total newbies to cover these three git commands? What I am trying to learn is how to restore ...
2
votes
1answer
30 views
Informative message for reverting multiple git commits
When reverting multiple commits using
git revert -n f0000000
git revert -n baaaaaaa
is it possible to ask git to mention in the new commit message all the commits you've reverted, not just one of ...
2
votes
2answers
41 views
Git revert not bringing back the earlier state
So a long time ago I added a folder abc with a group of files in it to my project and made a commit with revision xyz.
After many commits someone has erased the folder with git rm -r abc.
After this ...
2
votes
2answers
403 views
Why does git revert complain about a missing -m option?
So I'm working on a project with other people, and there's multiple github forks being worked on. Someone just made a fix for a problem and I merged with his fork, but then I realized that I could ...
2
votes
3answers
249 views
Git: use revert or checkout to undo pushed changes?
Git is a phenomenal tool, but I have yet to wrap my mind around the best way to undo pushed changes. Here's the situation.
I'm on a branch, and have pushed several commits to GitHub. It has since ...
2
votes
1answer
504 views
git how to revert to specific revision
I have a git project.
I just made a commit, then I deleted some directories. ops, my bad.
Now I want to restore those directories that I have deleted. how do I do that?
1
vote
2answers
35 views
Revert many commit after the creation of a branch
i'm using git to manage my project, but i'm not much experienced in this kind of programs, so often i use them improperly(eg: i commit many (unrelated) changes in only one commit). I'm trying to using ...
1
vote
1answer
71 views
Git Revert and then commit but want to keep revision before revert
My commit is already push to Github, let say
A > B > C > D > E -- HEAD
I want to revert back to B , so I use
git reset --hard <B:Hash>
Now, it will look like
A > B -- HEAD
So, if I push ...
1
vote
2answers
85 views
Git: How to rollback/undo a change to an image?
So our designer made some changes to some images, and committed the changes. So now our git log looks something like this:
Commit 1: Changed images
Commit 2: Oops, forgot to commit a few images
...
1
vote
3answers
112 views
Git Branch newbie - How to reverse?
Not sure if this is a proper way to work with branches.
I had this application on structure A.
I created a branch Z while I was on that structure A (but I kept my self on the master branch working).
...
1
vote
2answers
120 views
I need to pop up and trash away a “middle” commit in my master branch. How can I do it?
For example, in the following master branch, I need to trash just the commit af5c7bf16e6f04321f966b4231371b21475bc4da, which is the second due to previous rebase:
commit ...
1
vote
3answers
422 views
Git: How to reset after merging?
I've merged a master branch from a friend's repository into my working directory into branch_a using:
git pull my_friend master
I've discovered that the merged version has errors. To continue ...
0
votes
1answer
97 views
Git Revert Error Message?
While trying to revert a commit I made to my repository of my .emacs.d folder I get the following message:
haziz@haziz> git revert 7fe3f
error: could not revert 7fe3f0b... .emacs.d contents from ...
0
votes
3answers
131 views
Reverting a git merge commit, then reverting the revert
Our team uses Github Pull Requests to manage our workflow, much like what is described here. Upon manually reviewing the accepted Pull Request, we occasionally need to revert that merge because it ...
0
votes
2answers
402 views
What should I do when git revert aborts with an error message?
OK, so I'm getting an error sometimes when I try to revert a commit (with Git). All that I do is
git revert <commit hash>
and it gives me this message:
error: could not revert <commit ...
0
votes
2answers
845 views
undo revert in git or tortoisegit
Is there an easy way to undo a tortoisegit revert?
Here's more info: I just committed a large multi-file checkin, and right afterwards decided I instead wanted to commit a separate small checkin ...
0
votes
1answer
103 views
Is the full path required to unstage a file in GIT if am currenlty under a sub-directory?
Repo: mergetest
$pwd
/gitvobs/mergetest/apple
$git status
On branch br1
Changed but not updated:
(use "git add ..." to update what will be committed)
(use "git checkout -- ..." to discard ...