Before making any changes:
git clone <https://github.com/><your-username>/<repo-name>.git
cd <repo-name>
This helps you sync your fork with new updates from the original repo.
git remote add upstream <https://github.com/><original-org>/<repo-name>.git
git fetch upstream
upstream/maingit checkout main
git pull upstream main
git push origin main
git checkout -b feature/your-branch-name
git push -u origin feature/your-branch-name