Skip to content

Instantly share code, notes, and snippets.

View nathannis's full-sized avatar

Nathan Shirlberg nathannis

  • Labatt Food Service
  • San Antonio, TX
View GitHub Profile
@gmcerveny
gmcerveny / README.md
Last active December 19, 2015 16:49
Programmers Book Club

Programmers Book Club

The programmers book club is a bi-weekly meeting of technically minded folks interested in improving their skills relevant to the craft and practice of programming.

Time & Location

Wednesdays, 6:00-7:00pm at Geekdom on the 11th floor in the Berners-Lee conference room.

Current Book

#!/bin/bash
cat .gitignore | egrep -v "^#|^$" | while read line; do
if [ -n "$line" ]; then
OLD_IFS=$IFS; IFS=""
for ignored_file in $( git ls-files "$line" ); do
git rm --cached "$ignored_file"
done
IFS=$OLD_IFS
fi