Skip to content

Instantly share code, notes, and snippets.

View dadreggors's full-sized avatar

David Dreggors dadreggors

  • Red Hat
  • Orlando, FL
View GitHub Profile
import std;
backend default {
.host = "127.0.0.1";
.port = "8008";
}
backend jira {
.host = "127.0.0.1";
.port = "8080";
}
backend confluence {
@dadreggors
dadreggors / .gitconfig
Created July 3, 2014 17:29
Helpful git alias
[alias]
a = add
ap = add -p
b = branch
bb = "!git for-each-ref --sort='-authordate' --format='%(authordate)%09%(objectname:short)%09%(refname)' refs/heads | sed -e 's-refs/heads/--'"
c = commit
cam = commit -a -m
cav = commit -a --verbose
cm = commit -m
co = checkout