DevOps / GIT Interview Questions
Difference between git commit and git push.
The git commit records changes to the repository while git push updates remote refs along with associated object.
git commit record your changes to the local repository. git push update the remote repository with your local committed changes.
More Related questions...