This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Edit the .git/config file in your local repo like so: | |
# cd <path/to/project> | |
# vim .git/config | |
# (include the lines below) | |
[remote "origin"] | |
url = https://github.com/bryanbraun/anchorjs.git | |
fetch = +refs/heads/*:refs/remotes/origin/* | |
fetch = +refs/pull/*/head:refs/pull/origin/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From f788a1a6c27be0fb421d2758492f9366b895ba20 Mon Sep 17 00:00:00 2001 | |
From: Bryan Braun <[email protected]> | |
Date: Tue, 18 Nov 2014 14:43:17 -0500 | |
Subject: [PATCH] Make the alt-text field required (and add a class for styling | |
it). | |
Signed-off-by: Bryan Braun <[email protected]> | |
--- | |
dialogs/image2.js | 4 +++- | |
1 file changed, 3 insertions(+), 1 deletion(-) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# app.rb | |
require "sinatra" | |
require "sinatra/activerecord" | |
require 'rest-client' | |
require 'json' | |
require 'octokit' | |
require 'pp' # for pretty print debugging | |
# Needed for preserving github auth tokens across sessions. |
NewerOlder