LEARNING JOURNAL

I created this learning journal to practice writting and to help me learn by writting everything down. Source code here

1/13/2024[edited at: 1/14/2024]

Git fetch and git pull

Tags: git

git fetch loads the changes on the server to the branch remote/origin. After examining the changes carefully, you can merge them into your local branch.

git pull combines git fetch and git merge into one command.