Sync Code
- Add the upstream repository URL to your own repository
bash
git remote add upstream https://github.com/Daymychen/art-design-pro
- Fetch updates from the upstream repository
bash
git fetch upstream
- Merge updates and pull the latest code from the open source project
bash
# Switch to local main branch
git checkout main
# Merge updates
git merge upstream/main
- When there are code conflicts, resolve the conflicts and commit the code after resolution