Reputation: 7273
I have started to use frameworks like Twitter Bootstrap, but if Twitter releases a minor update, I'm not sure how to easily update my existing code once I've integrated it into a project. Currently I am just getting the new files and putting them into the directory.
Upvotes: 1
Views: 192
Reputation: 6580
Step 1: git checkout -b NewFrameworkVersionTest
Step 2: download new framework files and copy over existing ones
Step 3: add & commit to branch
Step 4: run your build, making sure to execute all automated tests
Step 5: deploy build to test environment
Step 6: perform any manual testing you wish to
Step 7: If no issues, skip to Step 10. else, fix any issues identified
Step 8: commit changes to branch
Step 9: go back to step 4
Step 10: git checkout master
Step 11: git merge NewFrameworkVersionTest
Step 12: deploy to production
Upvotes: 3