Contributing to IB_Robot
Setting Up Your Fork and Remotes
If you plan to contribute, set up a personal fork and configure remotes manually:
Main Repository
# Add your fork as 'origin'
git remote set-url origin https://gitcode.com/<YOUR_USERNAME>/IB_Robot.git
# Add the upstream repository
git remote add upstream https://atomgit.com/openeuler/IB_Robot.git
Verifying Your Remotes
git remote -v
# origin https://gitcode.com/<YOUR_USERNAME>/IB_Robot.git (fetch)
# upstream https://atomgit.com/openeuler/IB_Robot.git (fetch)