DEV Community

Discussion on: Basic Git Commands for Terminal

Collapse
 
pavloskl profile image
pavloskl

Nice article/cheat sheet for basic git commands.
I would be more precise with the "git fetch" command. You write:
git fetch: This imports any changes made in
your remote repo to your local repo.
While this is true, you should explain that git fetch does not integrate these new data into your working files so is a great way to get a fresh view on all the changes in the repository.
Therefore due to its harmless nature you are always sure that your working files are safe.

Collapse
 
krisperu profile image
krisperu

Thanks for the feedback, I will work on getting that changed.