Switch to the master branch
git checkout master
Fetch the latest changes from the remote repository.
git fetch
Rebase your local branch onto the updated remote branch:
git rebase origin/master
Push the changes to the remote repository.
git push origin main
LAB 6
HOME