Skip to content

Instantly share code, notes, and snippets.

View jerrymarino's full-sized avatar

Jerry Marino jerrymarino

View GitHub Profile
@jerrymarino
jerrymarino / nix-tips.md
Created June 3, 2019 18:20
Tips for using the nix package manager on macOS
@jerrymarino
jerrymarino / .md
Created September 21, 2021 22:46
Updating swift checkouts latest

Updating all swift checkouts to a tag

cd ~/swift-projects
find . -name \*.git  -exec /bin/bash -c 'cd $(dirname {}) && pwd && git fetch' \;
cd swift
./utils/update-checkout   --tag swift-5.4.2-RELEASE
T0.x1