- Make sure latest
main-dxp
branch is checked out - Create
feature/sync
branchgit checkout -b feature/sync
- Make sure OSS repository is added as separate remote.
git remote add oss git@github.com:TheWidlarzGroup/react-native-video.git
- Fetch all tags
git fetch --all --tags
- List OSS release tags
git ls-remote --tags oss
- Merge OSS release tag
git merge v6.X.X
- Solve conflicts
- Make sure CHANGELOG is ordered properly: OSS release X -> fork releases based on X -> OSS release Y
- Check is sample is working
- Add all changes
git add .
- Commit all changes
git commit -m "Sync 6.X.X"
- Push changes
git push -u origin feature/sync