- Setup:
git clone <repo-url>
git branch -m master vendor
#check configurations
git config --get-regexp 'branch.vendor.*'
#master will contain customizations
git checkout -b master
- Merge upstream updates:
git checkout vendor
git pull #or 1. copying updated library files to the folder and 2. commit
git checkout master
git merge vendor