Advanced Manipulations
git reset
Description
It is used to undo changes in our working directory and staging area, and it can also move the current branch to a different commit. This command is very powerful and can be used in a variety of scenarios to reset the state of your repository.
Usage
Options
--soft
: Resets the HEAD to the specified commit, but leaves the index and working directory unchanged.
--mixed
: Resets the HEAD and index to the specified commit, but leaves the working directory unchanged.
--hard
: Resets the HEAD, index, and working directory to the specified commit.
--keep
: Resets the HEAD to the specified commit, but keeps the working directory unchanged unless there are uncommitted changes that would be overwritten.
--merge
: Resets the HEAD to the specified commit and resets the index to match, but keeps the working directory unchanged unless there are uncommitted changes that would be overwritten.
Modes
There are three primary modes for git reset
: --soft
, --mixed
, and --hard
. Each mode affects the repository differently.
--soft
: Moves the HEAD to the specified commit but does not touch the index (staging area) or the working directory.--mixed
(default): Moves the HEAD to the specified commit and resets the index, but does not touch the working directory.--hard
: Moves the HEAD to the specified commit and resets both the index and working directory to match the specified commit.
Common Use Cases
Example Workflow
When There Are No Changes in the Working Directory
Scenario:
We have no changes in the working directory and want to move the current branch to a previous commit.
Commands:
Explanation:
This command moves the HEAD to the previous commit and resets both the index and working directory to match this commit.
Since there are no changes in the working directory, this operation is straightforward and safe.
When There Are Changes in the Working Directory
Scenario:
We have uncommitted changes in the working directory that want to discard.
Commands:
Explanation:
This command resets the working directory and index to match the current commit, effectively discarding all uncommitted changes.
Use with caution as this will permanently delete your changes.
When There Are Changes in the Working Directory and Staged Changes
Scenario:
We have both staged and unstaged changes that we want to unstage but keep in the working directory.
Commands:
Explanation:
This command resets the index to match the current commit but leaves the working directory unchanged.
All changes that were staged are now unstaged but remain in the working directory.
When There Are Changes in the Working Directory, Staged Changes, and Commits
Scenario:
We have changes in the working directory, staged changes, and we want to undo the last commit but keep the changes in the working directory and staging area.
Commands:
Explanation:
This command moves the HEAD to the previous commit but keeps all changes in the working directory and index.
Useful for undoing a commit while keeping your changes for further editing.
When There Are Changes in the Working Directory, Staged Changes, Commits, and the Commit Has Been Pushed to Remote
Scenario:
You have changes in the working directory, staged changes, commits, and you have pushed the commit to a remote repository. Now you want to revert the push commit.
Commands:
Explanation:
git reset --soft HEAD~1
moves the HEAD to the previous commit but keeps the changes in the working directory and staging area.If needed, you can amend the changes and commit again.
git push --force
updates the remote repository to match your local repository, effectively undoing the previous commit. Use this command with caution, especially in shared repositories, as it rewrites the commit history.
git reflog
Description
It is used to record updates to the tip of branches and other references in the Git repository. It allows to view the history of changes to the HEAD reference, including actions such as commits, resets, and checkouts. This is particularly useful for recovering lost commits or changes that we thought were gone.
Usage
What It Does
Records History: Keeps a log of where our references have been, including branch tips and HEAD.
Recovery Tool: Helps to recover commits or branches that have been altered or deleted.
View Actions: Shows actions that have changed the state of our repository.
Common Use Cases
Example Workflow
git cherry-pick
Description
It allows us to apply the changes from one or more existing commits to the current branch. This is useful when we want to copy a commit from another branch without merging the entire branch. Cherry-picking can be helpful for backporting bug fixes or features to another branch.
Usage
Options
--continue
: Resumes the cherry-pick after resolving conflicts.
--abort
: Aborts the cherry-pick process and tries to return the branch to its previous state.
--quit
: Stops the cherry-pick but keeps the changes in the working directory.
-n
or --no-commit
: Applies the changes from the specified commits without creating a commit.
-x
: Appends a line to the commit message indicating which commit this change was cherry-picked from.
What It Does
Applies Commit Changes: Copies the changes introduced by the specified commit(s) to the current branch.
Commits the Changes: Automatically creates a new commit with these changes.
Common Use Cases
Example Workflow
Scenario: Hotfix on a Production Branch
Imagine we have a main
branch where our main development happens and a production
branch that reflects the code running in production. A critical bug is found in production, and we fix it on a feature branch. We need to apply this fix to both the production
branch and the main
branch.
Summary
Hotfix Branch: Create a hotfix branch to fix the issue.
Commit the Fix: Make changes and commit them on the hotfix branch.
Merge to Main: Merge the hotfix branch into
main
and push.Cherry-Pick to Production: Apply the fix to
production
usinggit cherry-pick
and handle any conflicts that arise.Push to Production: Push the changes to the remote
production
branch.
Handling Conflicts During Cherry-Picking
If there are conflicts when cherry-picking, we will see something like this
Last updated
Was this helpful?