This repository has been archived on 2017-04-03. You can view files and clone it, but cannot push or open issues/pull-requests.
blog_post_tests/20140328061532.blog

8 lines
1.6 KiB
Plaintext

How should cvs-fast-export be properly ignorant?
<p>I just shipped <a href="http://www.catb.org/esr/cvs-fast-export/">version 1.10 of cvs-fast-export</a> with a new feature: it now emits fast-import files that contain CVS&#8217;s default ignore patterns. This is a request for help from people who know CVS better than I do.</p>
<p><span id="more-5631"></span></p>
<p>I&#8217;ve written before about the difference between <a href="http://esr.ibiblio.org/?p=3859">literal and literary</a> repository translations. When I write translation tools, one of my goals is for the experience of using the converted repository to as though the target system had been in use all along. Notably, if the target system has changesets, a dumb file-oriented conversion from CVS just isn&#8217;t good enough.</p>
<p>Another goal is for the transition to be seamless; that is, without actually looking for it, a developer browsing the history should not need to be aware of when the transition happened. This implies that the ignore patterns of the old repository should be emulated in the new one &#8211; no object files (for example) suddenly appearing under git status when they were invisible under CVS.</p>
<p>There is one subtle point I&#8217;m not sure of, though. and I would appreciate correction from anyone who knows CVS well enough to say. If you specify a .cvsignore, does it add to the default ignore patterns or <em>replace</em> them?</p>
<p>My current assumption in 1.10 is that it adds to them. If someone corrects me on this, I&#8217;ll remove a small anount of code and ship 1.11.</p>