Skip to content

Instantly share code, notes, and snippets.

View willmorgan's full-sized avatar

Will Morgan willmorgan

View GitHub Profile
@willmorgan
willmorgan / function.json
Created February 19, 2018 15:13
Azure Function Runtime ISO8601 datetime mangling
{
"disabled": false,
"tracing": {
"consoleLevel": "verbose"
},
"bindings": [
{
"authLevel": "anonymous",
"type": "httpTrigger",
"direction": "in",
@willmorgan
willmorgan / git-branch-delete-gone.sh
Last active October 16, 2018 11:47
Delete Git branches that are gone
git branch -v | grep "\[gone\]" | grep -Eo "^ ([A-z0-9_./-]+)" | sed -E 's/^ //g' | xargs git branch -D
@willmorgan
willmorgan / .gitconfig
Last active July 2, 2018 13:26
.gitconfig aliases
[alias]
co = checkout
chep = cherry-pick
chepc = cherry-pick --continue
br = branch
ci = commit
st = status
rbi = rebase -i
rbc = rebase --continue
plu = pull --rebase upstream