My question is essentially the same as herebut refers to mercury. I have a set of files under version control, and one save operation modifies quite a lot of files. Some of the resulting changes are important for version control, and some of them are simply undesirable. I can "split" the garbage into separate files. These junk files must be part of the basic scan for it to work, but their contents (and changes over time) are not so important for version control. Now I'm just telling all our developers not to commit these files, but we all forget and create a lot of extra baggage in the repository. I donβt really like the proposed svn solution, because there are quite a few files, and I want a simple clone to work without this extra manual work, so I was wonderingDoes mercurial have a better alternative. This is similar to hg shelve, but not quite, and kind of ignored, but not really. Is there an hg extension that allows this? Can git do this?
source
share