<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class=""><div><blockquote type="cite" class=""><div class="">On Feb 18, 2017, at 1:06 PM, R. Matthew Emerson <<a href="mailto:rme@acm.org" class="">rme@acm.org</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="">I would like to take the code from <a href="http://svn.clozure.com/publicsvn/openmcl/trunk/tests/" class="">http://svn.clozure.com/publicsvn/openmcl/trunk/tests/</a> and put it into its own repository on GitHub.<br class=""><br class="">I tried using GitHub's importer to do this, and made <a href="https://github.com/Clozure/ccl-tests" class="">https://github.com/Clozure/ccl-tests</a>.<br class=""><br class="">I find this import unsatisfactory because it imports a large number of commits that don't include any changes to the tests.<br class=""><br class="">Is there anything I can do about this?<br class=""><br class=""></div></div></blockquote><div><br class=""></div>I found a recipe.  <a href="http://stackoverflow.com/questions/28313664/remove-empty-commits-in-git" class="">http://stackoverflow.com/questions/28313664/remove-empty-commits-in-git</a></div><div><br class=""></div><div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco; background-color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">   git filter-branch --prune-empty --tag-name-filter cat -- --all</span></div><div style="margin: 0px; font-size: 10px; line-height: normal; font-family: Monaco; background-color: rgb(255, 255, 255);" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">   git for-each-ref --format="%(refname)" refs/original/ | xargs -n 1 git update-ref -d</span></div><div class=""><span style="font-variant-ligatures: no-common-ligatures" class=""><br class=""></span></div><div class=""><span style="font-variant-ligatures: no-common-ligatures" class="">I don't really understand what it does, but it seems to work.  I'll delete the old ccl-tests repo and make a new one.</span></div><div class=""><span style="font-variant-ligatures: no-common-ligatures" class=""><br class=""></span></div></div></body></html>