Skip to content

Instantly share code, notes, and snippets.

@dgp
Created March 12, 2013 12:14
Show Gist options
  • Save dgp/5142438 to your computer and use it in GitHub Desktop.
Save dgp/5142438 to your computer and use it in GitHub Desktop.
git config
[alias]�
5 co = checkout�
6 lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative�
7 st = status�
8 ci = commit�
9 br = branch�
10 df = diff�
11 who = shortlog -s --�
12 �
13 [color]�
14 diff = auto�
15 status = auto�
16 branch = auto�
17 [core]�
18 excludesfile = /Users/Dinesh/.gitignore�
19 editor = emacs�
20 autocrlf = input�
21 � editor = vim�
22 [apply]�
23 whitespace = nowarn�
24 [format]�
25 pretty = %C(yellow)%h%Creset %s %C(red)(%cr)%Creset�
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment