Git force pull
In this tutorial, we will learn how to force pull changes from a remote repository in Git.
Sometimes, we may need to discard local modifications and replace them with updates from a remote repository in a collaborative development environment.
We use git pull
the command to fetch changes from the remote repository to the local branch in the local repository.
git pull
The command will succeed
only if the changes in your local branch are behind the changes in the remote repository .
If the changes in the local branch and the remote repository diverge, if we want to discard the local changes, we need to force to git pull
overwrite the local changes,
We will now explain this in detail with an example.
Force pull of remote changes in Git
using git fetch
, , git reset
andgit merge
git pull
A command is not a single operation. git pull
A command runs commands, i.e. git fetch
fetches data from a remote repository, and then a command git merge
merges those changes into your local repository.
So git pull
the command runs these two commands as follows.
$ git fetch
$ git merge origin/$CURRENT_BRANCH
git fetch
The command downloads the latest changes from the remote repository. It does not make any changes to the local 合并
repository 变基
.
The command given above git merge
merges changes from the remote repository, origin
given by the alias , into the local branch $CURRENT_BRANCH
in the local repository that are not yet present in the local branch.
Therefore, if the local branch in your local repository is different from the branch in the remote repository, this git pull
will fail.
We may have made some local changes to the files in our working tree of our local branch. Hence, this will cause git pull
failure.
We might now decide to discard our local changes in favor of changes in the remote repository.
Therefore, we need to force pull the changes which will overwrite the local modifications.
We need to do the following to force pull remote changes.
$ git fetch
$ git reset --hard HEAD
$ git merge origin/$CURRENT_BRANCH
The command with --hard
the -fetch option git reset
will reset the branch to what we just fetched. It will also discard any local changes to tracked files, and will remove untracked files.
Therefore, use with caution as any local changes will be lost.
Alternatively, we can save our local changes before pulling them in. We can use git stash
stash changes along with the pull of changes.
We can do this.
$ git fetch
$ git stash
$ git merge origin/$CURRENT_BRANCH
$ git stash pop
Therefore, when we use git stash
, we no longer need to execute it on the local branch of the local repository git reset
.
We use git stash pop
to fetch local changes from storage.
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Related Articles
Git pulls Master into the branch
Publish Date:2025/03/29 Views:193 Category:Git
-
When developing software using the Git tool, you can create different branches for different features. When you make changes to master, these changes are not automatically added to other branches. This article will explain how to pull all t
Installing Git in Cygwin
Publish Date:2025/03/29 Views:116 Category:Git
-
Git is considered an active, innovative and highly recommended distributed version control system with a fantastic standalone command line while providing us with advanced features and complete internal methods. What is Cygwin Cygwin is con
Displaying remote repository information in Git
Publish Date:2025/03/29 Views:139 Category:Git
-
This tutorial is about displaying information about remote repositories in Git. We use Git, a version control system, to track changes made to files in our project directories through Git repositories. Usually, local repositories are tracke
Deleting a remote repository in Git
Publish Date:2025/03/29 Views:130 Category:Git
-
When we commit the wrong data to the origin, push it to the origin and merge it to the current branch. But later we realize that we don't need to do the merge in that repo, so the question here is how to undo or revert the merge commit that
Setting up a Git remote repository
Publish Date:2025/03/29 Views:78 Category:Git
-
This article will explain how to add or delete remote repositories. A remote repository is a project hosted somewhere, such as Github/Gitlab. Adding a remote repository allows us to use a short name (alias) to execute commands instead of ty
.git Directory Explanation
Publish Date:2025/03/29 Views:65 Category:Git
-
In this article, we'll introduce Git folders .git . We'll cover why Git creates folders and what they contain. .git What are folders in Git ? Git is a widely used version control system. Git repositories store the changes you make in your p
Cherry-Pick Merge Commits in Git
Publish Date:2025/03/29 Views:105 Category:Git
-
When multiple developers from the same team are working on a project, regardless of the complexity of the project, handling and managing changes between Git branches becomes very difficult. Sometimes, we need to merge some specific commits
Fatal: Refusing to Merge Unrelated Histories error in Git
Publish Date:2025/03/29 Views:123 Category:Git
-
This article outlines the steps required to resolve the fatal: refusing to merge unrelated histories error in Git. We usually encounter such errors when trying to merge two unrelated Git projects into one branch. It pops up when the receivi
Clone a remote repository using submodules in Git
Publish Date:2025/03/29 Views:58 Category:Git
-
This article will discuss how to clone a remote Git repository using submodules. We will also create a submodule and push it to the remote repository before cloning it. Clone a remote repository using submodules in Git We clone our reposito