Skip to content

Instantly share code, notes, and snippets.

View jwalsh2me's full-sized avatar

John Walsh jwalsh2me

View GitHub Profile
import csv
parsed = []
with open ('source.csv', "r") as f:
data = list(csv.reader(f, delimiter=','))
for row in data:
if not any(row):
continue
parsed.append(row)
git submodule deinit <path_to_submodule>
git rm <path_to_submodule>
git commit-m "Removed submodule "
rm -rf .git/modules/<path_to_submodule>