In a Git tutorial I'm going through, git commit is used to store the changes you've made. What is git push used for then? Thanks for reading!
|
|
Basically Here is a nice picture from Oliver Steele, that explains the git model and the commands:
EDIT: |
|||||||||||||||||
|
|
commit: adding changes to the repository |
|||
|
|
|
|
||||
|
|
|
Since git is a distributed version control system, the difference is that commit will commit changes to your local repository, whereas push will push changes up to a remote repo. |
|||
|
|
|
Well, basically git commit puts your changes into your local repo, while git push sends your changes to the remote location. |
|||
|
