DEV Community

Discussion on: 20 Git Commands Every Developer Should Know

Collapse
 
stephen_dsouza profile image
Stephen D Souza

command is used to take that information you just fetched

Not sure if anyone has pointed it out but ‘git pull’ is a combo of ‘git fetch’ and ‘git merge’, so you don’t need to run a ‘git fetch’ before a pull.

Collapse
 
krishnaagarwal profile image
Krishna Agarwal

Yes, you are absolutely correct
Thanks for the point