Skip to content

Sync Code

  1. Add the upstream repository URL to your own repository
bash
git remote add upstream https://github.com/Daymychen/art-design-pro
  1. Fetch updates from the upstream repository
bash
git fetch upstream
  1. 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
  1. When there are code conflicts, resolve the conflicts and commit the code after resolution

Released under the MIT License