Key points

// push the remote main branch to local
git push origin master
// pull the changes from the remote into your local
git pull origin
git checkout <our_branch_name>
git merge <their_branch_name>
git remote -v
git remote add <remote_name> <remote_url>