Skip to content

Instantly share code, notes, and snippets.

View fkirc's full-sized avatar

fk fkirc

  • Austria
View GitHub Profile
@fkirc
fkirc / gitsetup.sh
Last active October 14, 2022 10:24
My global git configuration
#!/bin/bash
set -e
set -x
# It would be painful to repeat credentials every time.
# This should store them to ~/.git-credentials
git config --global credential.helper store
# Default merge
git config --global pull.rebase false
@fkirc
fkirc / unzip_aar.sh
Created September 23, 2019 15:29
Unzip an Android Archive (AAR)
#!/usr/bin/env bash
set -xe # Log everything, abort if anything fails
# Simple script to unzip Android Archive libraries (AAR files)
usage() {
echo "Usage: $0 <aar file>"
exit 1
}