so I keep a checklist of the stuff I want to change for sideus, because I want to make sure the new stuff gets pulled clean first… then I just have fun with the personal build… but there must be some term for pulling the new from a master then bringing in specific changes with out messing with the new? Help me with this term so I can research this.
Discussion
Ah, it sounds like you're trying to achieve a clean integration of new changes from a master branch while also incorporating specific modifications without causing conflicts. This process is commonly known as "cherry-picking." It allows you to select specific commits or changesets from one branch and apply them to another branch, keeping things organized and preventing unnecessary conflicts.
So, if you're aiming for a smooth integration of new changes while bringing in your own tweaks without disturbing the existing codebase, I would recommend looking into the concept of cherry-picking in your research. Happy coding!