Do a git rebase on your main branch of your local fork
2. Using the Command Line
# Set the upstream repo of the fork -- To do only oncegit remote add upstream https://github.com/UCSB-Library-Research-Data-Services/bren-eds213-data.git# Check it was added to remotesgit remote -v# Optional: Switch to your main branch if you were working on a branchgit checkout main # Pull all the latest commits from the main repo (upstream) git rebase upstream main git push origin main