Keeping up with upstream changes while adding small fixes or even major changes

Posted by neo on Programmers See other posts from Programmers or by neo
Published on 2012-11-13T22:48:37Z Indexed on 2012/11/13 23:21 UTC
Read the original article Hit count: 274

Often I need to apply some small fixes (to make them run on my environment) or even change some parts of the software (to tailor it to my needs) to software from outside. However this obviously creates problem with updating said software, even when it changes nothing related to my fix. It would be easier when the software provided integration for some kind of plugins but more often than not it doesn't.

What would be an ideal workflow regarding that? Most of the projects are git repos I pulled from outside. How should I apply my changes so that I can update painlessly? You can assume that external changes are much more often and larger than my own ones, so reviewing each one of them won't be a solution.

© Programmers or respective owner

Related posts about version-control

Related posts about git