Skip to content

Instantly share code, notes, and snippets.

View adamcichy's full-sized avatar

Adam Cichy adamcichy

View GitHub Profile
@mremond
mremond / MobileProvision.swift
Created November 9, 2018 09:11
Read mobile provisioning profile from Swift
//
// MobileProvision.swift
// Fluux.io
//
// Created by Mickaël Rémond on 03/11/2018.
// Copyright © 2018 ProcessOne.
// Distributed under Apache License v2
//
import Foundation
@nicktoumpelis
nicktoumpelis / repo-rinse.sh
Created April 23, 2014 13:00
Cleans and resets a git repo and its submodules
git clean -xfd
git submodule foreach --recursive git clean -xfd
git reset --hard
git submodule foreach --recursive git reset --hard
git submodule update --init --recursive