What is the difference between git add
and git commit
?
I understand that former adds to staging. But adding to staging means what?
Isn't it an additional step to first add to staging and then do a commit? In fact, it just doesn't end there, we also have to do a push
to actually save our changes to the centralized repository. Am I missing any point here?
The point of staging is picking the changes you’d like to be a part of a commit. It makes the commits cleaner, as it allows you to do several unrelated things at once and then neatly stage them into different commits as appropriate.
To sum up: staging picks changes to be a part of a commit, committing bundles changes into a separate standalone entity and makes them a part of the history, and pushing lets others know about the changes, making them more or less permanent.
It makes great sense to have all these operations separate, it gives you a lot of flexibility and freedom in your workflow.