Skip to content

Instantly share code, notes, and snippets.

@yannickcr
yannickcr / .gitconfig
Last active May 24, 2016 15:35
Git Alias for Gerrit
[alias]
patch = commit --amend --no-edit --reset-author
yolo = commit --amend --no-edit --reset-author --no-verify
update = pull --ff-only
draft = !sh -c 'git push origin HEAD:refs/drafts/master/${1-bugfix}' -
publish = !sh -c 'git push origin HEAD:refs/for/master/${1-bugfix}' -
@Phrogz
Phrogz / html5.haml
Last active August 29, 2015 13:56 — forked from fnhipster/html5.haml
!!! 5
%html
%head
%meta(charset="utf-8")
%title Page Title
%meta(name="author" content="")
%meta(name="description" content="")
%meta(name="revisit-after" content="3 days")
%link(href="http://creativecommons.org/licenses/by/4.0/" rel="license" title="Creative Commons Attribution License")
%link(href="/css/screen.css" media="screen" rel="stylesheet")