JIYIK CN >

Current Location:Home > Learning > OPERATING SYSTEM > Git >

Git commit and Git push

Author:JIYIK Last Updated:2025/04/02 Views:

In this article, we will understand the difference between git commitand .git push

Git is a distributed version control system that tracks changes to files, typically in a collaborative development environment.

Git provides each developer (i.e.) each machine with a local copy of the complete history of the project directory tracked as a repository. Any local changes are then copied from the local repository to the remote repository.

Additionally, any changes on the remote repository will be pulled into the local repository.

Git provides commands git commitand git pushto achieve these goals.

We will now explain the difference between them in detail with an example.


Difference between git commitand in Gitgit push

git commitgit pushThe basic difference between and is git committhat the scope of is the local repository, while git pushthe scope of is the remote repository.

git pushCommands always git commitappear after an execute command.

When we execute git committhe command, a snapshot of the project's currently staged changes is captured. git addThe command performs the staging of changes.

git pushCommand pushes the local repository content to the remote repository. This command transfers commits from the local repository to the remote repository.

Assume that we have a file named in our local repository sample.txt, we have updated it, and also git addstaged the changes to the file using the command.

Now, we will check the status of our local repository as shown below.

$ git status
On branch main
Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
	modified:   sample.txt

We can see that sample.txtthe changes to the file are shown as ready to be committed.

We will now use the command to do this. The syntax of the command git committo commit changes with a message is .git commitgit commit -m <message>

Therefore, we will do the following.

$ git commit -m "updated sample.txt"

We will now check the Git log of our local repository as shown below.

$ git log --oneline
4488776 (HEAD -> main) updated sample.txt
...

We can now see the commit for the file in the Git log sample.txt. This commit is located at the index of our local repository HEAD. The new commit is HEADa direct child of the index, and the branch mainis updated to point to it.

We will now execute git pushthe command to push the commits to the remote repository. git pushThe syntax of the command is git push <remote-repository> <branch>.

Therefore, we will do the following.

$ git push origin main

We have now pushed our commits to the remote repository given by the alias originand remote-branch .main

We will now recheck the Git log as shown below.

$ git log --oneline
4488776 (HEAD -> main, origin/main) updated sample.txt
...

In the Git log, we can now see sample.txtthat the commit for the file is shown.

The commit is now in the local repository's index HEADand in the remote repository's remote branch.

Therefore, we elaborate on the difference between the commands git commitand in Git git push.

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.

Article URL:

Related Articles

Push to a specific branch in Git

Publish Date:2025/04/02 Views:53 Category:Git

In Git, we use branches to develop independent features directly from the main workflow of the project. Since Git is considered to be the best version control system so far, we have local and remote branches in our repository for different

Solve the Git Push Everything Up-To-Date Problem

Publish Date:2025/04/02 Views:120 Category:Git

Git is a free, open source version control system designed to work with projects quickly and efficiently. You can make changes to your repo and push them to master branches. This article explains how to use git push the command to resolve e

Git merge development branch into feature branch

Publish Date:2025/04/02 Views:126 Category:Git

Creating new branches and merging them is considered to be the most powerful tool of Git. The ability of Git to create new branches and merge them into the development code is very useful for developers working in a team environment. This f

Understanding Git conflict markers

Publish Date:2025/04/02 Views:112 Category:Git

In this article, we will discuss git conflict markers. Understanding Git conflict markers When pulling changes from a remote repository, you may encounter merge conflicts. Merge conflict files can sometimes be confusing. A typical merge con

Selectively merge changes from different branches in Git

Publish Date:2025/04/02 Views:116 Category:Git

This article will discuss merging specific changes from one branch to another. As we know, when merging branches, Git merges all files without exception. You may find yourself in a scenario where you have some commits in one branch and you

Complete the merge after resolving conflicts in Git

Publish Date:2025/04/02 Views:63 Category:Git

This article describes the process of completing a merge after resolving merge conflicts in Git. We will go through the merge steps, resolve the conflicts, and complete the merge. Complete the merge after resolving conflicts in Git For a si

Merge the development branch into Master in Git

Publish Date:2025/04/02 Views:167 Category:Git

This article provides an overview of merging a development branch into the master branch. Often we find ourselves creating a branch outside of the master branch for development. Once we are happy with the changes, we can merge them into mas

Recovering a conflicting Git merge

Publish Date:2025/04/02 Views:160 Category:Git

This article explains the revert command when a merge conflict occurs git merge . We will also take a quick look at how to undo a git merge that was successful and has been pushed to a remote repository. Recovering a conflicting Git merge I

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial