The difference between Git Push Origin and Git Push Origin Master
This article outlines the difference between the git push origin
and commands. We use these commands to push changes to a remote repository.git push origin master
The difference lies in how and when to use them, as explained below. We will go over what each command does, how to use it, and when to use each of the two commands.
git push origin master command
git push origin master
The command is very simple. We use this command to push our local changes from the master branch to the remote master branch.
This is its default behavior and cannot be changed.
That's all. There's not much to say about the command. Let's move on to the next command.
git push origin command
git push origin
The command is more complicated than the previous one. Before Git v1.7.11 , use git push origin
the command to push all local branches to the corresponding remote branches.
Git version V2.0+ requires us to configure push.default to matching or simple . When not set, Git defaults to a simple configuration, which only pushes the current branch to the corresponding remote-tracking branch.
If there is no remote tracking branch for the local branch, the command will fail. Let's look at an example.
Suppose we have a feature branch in the local repository and it has a remote tracking branch, what happens when we call the git push origin command without setting the push.default value?
$ git push origin
Git will give you a warning as shown below.
The output will be:
As you can see from the output above, Git used a simple configuration and it simply pushed our feature branch to the remote repository.
What happens
if we push.default
set the value to matching ? Let’s find out.
$ git config --global push.default matching
When running git push origin
the command, we get:
We can see that Git has pushed two branches to the remote. ( Master and feature branches)
In short, git push origin master
will only push the master branch to the remote-tracking master branch. On the other hand, git push origin
the command will push the current local branch, provided it has a remote-tracking branch.
However, you can change the behavior of this command to push all local branches to their corresponding remote-tracking branches by setting the push.default value to matching .
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 force pull
Publish Date:2025/03/29 Views:165 Category:Git
-
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 environme
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