Let's say that I'm working on a project with a team, and I have some home-made patches I use in development (you might say I have a fork of the project). I'd like these patches to be available for myself but they should not be checked into the team's repo, and it should still be easy to contribute to the original project. How would I manage this?
Currently I'm using some .diff
files that are filtered out by using git's update-index --skip-worktree
, and then I have created a custom tool around this. I'm just wondering if there's already some tooling solved the problem in a better way?