what is difference between git pull and git fetch



Git fetch is used to fetch new data from remote repository. It's never manipulate the data.

Git pull updates the changes in head from remote repository. It pull the data and integrate into local repository

Comments