I'm new to using Git, and we have a remote main set up and I have pulled the updated changes into my local main, my question is how do I update the local branches that I will create with those updated changes?
Can I do
git pull origin main
in the local branch or should I switch to the local branch and do
git merge main
on the local branch?