• Home

  • Custom Ecommerce
  • Application Development
  • Database Consulting
  • Cloud Hosting
  • Systems Integration
  • Legacy Business Systems
  • Security & Compliance
  • GIS

  • Expertise

  • About Us
  • Our Team
  • Clients
  • Blog
  • Careers

  • CasePointer

  • VisionPort

  • Contact
  • Our Blog

    Ongoing observations by End Point Dev people

    Git: Delete your files and keep them, too

    Jeff Boes

    By Jeff Boes
    August 30, 2012

    I was charged with cleaning up a particularly large, sprawling set of files comprising a git repository. One whole “wing” of that structure consisted of files that needed to stay around in production (they were various PDFs, PowerPoint presentations, and Windows EXEs that were only ever needed by the customer’s partners, and downloaded from the live site – our developer camps never wanted to have local copies of these files, which amounted to over 280 MB (and since we have dozens of camps shadowing this repository, all on the same server, this will save a few GB at least).

    I should point out that our preferred deployment is to have production, QA, and development all be working clones of a central repository. Yes, we even push from production, especially when clients are the ones making changes there. (Gasp!)

    So: the aim here is to make the stuff vanish from all the other clones (when they are updated), but to preserve the stuff in one particular clone (production). Also, we want to ensure that no future updates in that “wing” are tracked.

    # From the "production" clone:
     $ cd stuff
     $ git rm -r --cached .
     $ cd ..
     $ echo "stuff" >>.gitignore
     $ git commit ...
     $ git push ...
    

    Now, everything that was in the “stuff” tree remains, for “production”, but every other clone will remove these files when they update from the central repository:

    $ git pull origin master
     ...
     delete mode 100644 stuff/aaa
     delete mode 100644 stuff/aab
     ...
    

    git


    Comments