
Git Fetch
For the course ‘Real World Test Automation with Pytest (Django app)’ by Eden Marco, in the section Continuous Integration, I created Actions and pipelines in GitHub and Bitbuckets respectively. However, my local repository was not synchronized with the remote repository. Therefore, I learned how to use the 'git fetch' command to synchronize files between remote and local repositories. The 'git fetch' command downloads commits, files, and refs from a remote repository into your local repo. Fetching is what you do when you want to see what everybody else has been working on. You can find this tutorial at https://www.atlassian.com/git/tutorials/syncing/git-fetch