Skip to content

Instantly share code, notes, and snippets.

View paride's full-sized avatar

Paride Legovini paride

View GitHub Profile
@smoser
smoser / README.md
Last active July 17, 2020 15:05
build-upstream-pkg build a package from upstream source

build-upstream-pkg

Usage: build-upstream-pkg [ options ] <<ARGUMENTS>>

   build-upstream-pkg <upstream-commitish> <packaging-commitish>

   options:
      --version  VERSION    make the upstream version VERSION
                            default is to use git-describe

--output DIR put created files in DIR

@anjohnson
anjohnson / git-on-lp.md
Last active November 7, 2022 16:43
Notes for Git on Launchpad

Andrew's Notes on using Git with Launchpad

This page describes how I'm planning to work with git and lp, others don't have to follow my approach. The mirroring that I describe below may be slightly unusual, so your local git expert might not fully understand it.

Getting Started

Configure the lp: prefix in ~/.gitconfig

[url "git+ssh://anj@git.launchpad.net/"]
    insteadof = lp:
@cjp
cjp / delete-vpc.sh
Created March 5, 2017 15:22
Delete AWS VPC including dependencies
#!/bin/sh
#
# Delete a VPC and its dependencies
if [ -z "$1" ] then
echo "usage: $0 <vpcid>"
exit 64
fi
vpcid="$1"