git log origin/master..master --format="%h %s [%an]"
Essentially, this is a git log ..
git log --pretty=format:"%h %ad | %s%d [%an]" --graph --date=short
| /**********************************************/ | |
| /* | |
| /* IR_Black Skin by Ben Truyman - 2011 | |
| /* | |
| /* Based on Todd Werth's IR_Black: | |
| /* http://blog.toddwerth.com/entries/2 | |
| /* | |
| /* Inspired by Darcy Clarke's blog post: | |
| /* http://darcyclarke.me/design/skin-your-chrome-inspector/ | |
| /* |
| TEMPLATES=$(cat templates.txt); | |
| SUB_TEMPLATES=$(cat sub-templates.txt); | |
| for SUB_TEMPLATE in $SUB_TEMPLATES; do | |
| for TEMPLATE in $TEMPLATES; do | |
| touch templates/$TEMPLATE.$SUB_TEMPLATES.txt | |
| done | |
| done | |
| ;(function($, undefined) { | |
| $.REPLACE_PLUGIN_NAME = function(element, options) { | |
| var defaults = {} | |
| var plugin = this; | |
| plugin.settings = {} | |
| var $element = $(element), element = element; | |
| plugin.init = function() { | |
| plugin.settings = $.extend({}, defaults, options); | |
| private_method() | |
| plugin.public_method() |
| sed 's/STRING_1/STRING_2/' input.file >> output.file |
| # @use --global flag to assign to home ~/.gitconfig instead of local ~/.git/config file | |
| # For example | |
| # Disable filemode changes. | |
| # $ git config core.filemode false | |
| # Disable filemode changes globally. | |
| # $ git config --global core.filemode false |
| SELECT CONCAT('Mr. ', forename, ' ', surname, ' - ', jobTitle) FROM table; |
| git log --pretty=format:'%s' --author=Luke | grep -v "Merge branch" | sort -u |
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |
| #!/bin/bash | |
| # | |
| # DESCRIPTION: | |
| # | |
| # Set the bash prompt according to: | |
| # * the branch/status of the current git repository | |
| # * the branch of the current subversion repository | |
| # * the return value of the previous command | |
| # | |
| # USAGE: |