What are the differences between "git commit" and "git push"? What are the differences between "git commit" and "git push"? git git

What are the differences between "git commit" and "git push"?


Basically git commit "records changes to the repository" while git push "updates remote refs along with associated objects". So the first one is used in connection with your local repository, while the latter one is used to interact with a remote repository.

Here is a nice picture from Oliver Steele, that explains the git model and the commands:

Git data transport commands

Read more about git push and git pull on GitReady.com (the article I referred to first)


commit: adding changes to the local repository

push: to transfer the last commit(s) to a remote server


Well, basically git commit puts your changes into your local repo, while git push sends your changes to the remote location.