git cherry-pick <original commit sha>
Will make a copy of the original commit, essentially re-applying the commit
Reverting the revert will do the same thing, with a messier commit message:git revert <commit sha of the revert>
Either of these ways will allow you to git push
without overwriting history, because it creates a new commit after the revert.
When typing the commit sha, you typically only need the first 5 or 6 characters:git cherry-pick 6bfabc
Related Posts:
- How do I undo the most recent local commits in Git?
- Undo a Git merge that hasn’t been pushed yet
- Reset local repository branch to be just like remote repository HEAD
- Undoing a git rebase
- How do I revert all local changes in Git managed project to previous state?
- How do I revert all local changes in Git managed project to previous state?
- Reset local repository branch to be just like remote repository HEAD
- What is difference between ‘git reset –hard HEAD~1’ and ‘git reset –soft HEAD~1’?
- How do I delete a Git branch locally and remotely?
- How do I rename a local Git branch?
- What does cherry-picking a commit with Git mean?
- fatal: Not a git repository (or any of the parent directories): .git [duplicate]
- Git refusing to merge unrelated histories on rebase
- What is the difference between git push origin and git push origin master
- Git pushing to remote branch
- git – remote add origin vs remote set-url origin
- How do I undo ‘git add’ before commit?
- Git: Message ‘src refspec master does not match any’ when pushing commits in Git
- How can I see the differences between two branches?
- How to upgrade Git on Windows to the latest version
- Need to reset git branch to origin version
- How do I push a new local branch to a remote Git repository and track it too?
- git: fatal: Could not read from remote repository
- Windows git “warning: LF will be replaced by CRLF”, is that warning tail backward?
- How to change the URI (URL) for a remote Git repository?
- What would I use git-worktree for?
- How can I merge multiple commits onto another branch as a single squashed commit?
- Git error when trying to push — pre-receive hook declined
- Why does git say “Pull is not possible because you have unmerged files”?
- Pushing empty commits to remote
- How do I ignore an error on ‘git pull’ about my local changes would be overwritten by merge?
- How to revert multiple git commits?
- Stash only one file out of multiple files that have changed with Git?
- What is git fast-forwarding? [duplicate]
- The following untracked working tree files would be overwritten by merge, but I don’t care
- fatal: The current branch master has no upstream branch
- You have not concluded your merge (MERGE_HEAD exists)
- How to cherry-pick multiple commits
- git – pulling from specific branch
- What is “origin” in Git?
- How to copy commits from one branch to another?
- Trying to git pull with error: cannot open .git/FETCH_HEAD: Permission denied
- Remove a git commit which has not been pushed
- Remove a git commit which has not been pushed
- There is no tracking information for the current branch
- How can I make Git “forget” about a file that was tracked, but is now in .gitignore?
- Git push results in “Authentication Failed”
- What are the differences between .gitignore and .gitkeep?
- How to remove files from git staging area?
- How do I ignore an error on ‘git pull’ about my local changes would be overwritten by merge?
- How to undo git reset –soft to get my changes back?
- .gitignore and “The following untracked working tree files would be overwritten by checkout”
- What’s the difference between git switch and git checkout
- git – Your branch is ahead of ‘origin/master’ by 1 commit
- What is the point of ‘git submodule init’?
- Can I delete a git commit but keep the changes?
- Git: How to update/checkout a single file from remote origin master?
- Git nothing added to commit but untracked files present – even with those files added to gitignore
- ERROR: Error cloning remote repo ‘origin’
- How can I remove a commit on GitHub?
- What is the difference between ‘git remote update’, ‘git fetch’ and ‘git pull’?
- GitLab remote: HTTP Basic: Access denied and fatal Authentication
- git: How to ignore all present untracked files?
- Move existing, uncommitted work to a new branch in Git
- What are the differences between “git commit” and “git push”?
- Delete branches in Bitbucket
- Your branch is ahead of ‘origin/master’ by 3 commits
- What to gitignore from the .idea folder?git intellij-idea gitignore webstorm
- Why I always Got Error “Push to origin/master was rejected”?
- How to resolve git status “Unmerged paths:”?
- Github Windows ‘Failed to sync this branch’
- How can I generate a Git patch for a specific commit?
- How can I unstage my files again after making a local commit?
- Delete forked repo from GitHub
- Push local Git repo to new remote including all branches and tags
- How can I see the changes in a Git commit?
- Git merge without auto commit
- How to get Git to clone into current directory
- Git removing upstream from local repository
- Git pull – Please move or remove them before you can merge
- How do you merge two Git repositories?
- Resetting remote to a certain commit
- How to get Git to clone into current directory
- Why is .gitignore not ignoring my files?
- git-diff to ignore ^M
- Change the location of the ~ directory in a Windows install of Git Bash
- Differences between Commit, Commit and Push, Commit and Sync
- How can I delete all Git branches which have been merged?
- Git checkout – switching back to HEAD
- How to create a new branch from a tag?
- How to modify a specified commit?
- How can I push a specific commit to a remote, and not previous commits?
- Git ignore local file changes
- Import existing source code to GitHub
- git checkout all the files
- Git Workflow for Large, Live Site?
- Workflow for working with git and WordPress
- Git beginner: Keeping track of on-server changes
- best practice on pushing staging development (database/uploads) to the live server
- how can I create a WP offline environment before releasing the websites? [closed]