commit d2d9cab9cb9be9aaf6c07fc9484b4c1099e1eddf
parent f3c8222b0ba7c91f0a2610c658815f7ef62c11bd
Author: Ed van Bruggen <edvb54@gmail.com>
Date: Sat, 28 Jun 2014 07:44:19 -0700
Add gitconfig file for git configuration
Diffstat:
2 files changed, 33 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
@@ -19,6 +19,7 @@ system looks for them:
ln -s ~/dotfiles/vimrc ~/.vimrc
ln -s ~/dotfiles/bashrc ~/.bashrc
ln -s ~/dotfiles/tmux.conf ~/.tmux.conf
+ ln -s ~/dotfiles/gitconfig ~/.gitconfig
Now we need to install the plug-ins which are found in `vimrc.bundles`. To do this
I use Vundle, so enter this into the command line:
@@ -46,9 +47,13 @@ than sorry, adding one line of 16 charaters to your `.vimrc` file won't hurt.
##Contact
-Check out my website at [techandcode.com](http://techandcode.com) for more,
-tech and code. If you have any questions please contact me at
-edvb54@gmail.com or leave a comment wherever.
+Check out our website at [techandcode.com](http://techandcode.com) for more,
+tech and code. If you have any questions please contact me at edvb54@gmail.com
+or leave a comment wherever.
-ED
+## License
+
+GPL v3 License
+
diff --git a/gitconfig b/gitconfig
@@ -0,0 +1,25 @@
+[user]
+ email = edvb54@gmail.com
+ name = Ed van Bruggen
+[github]
+ user = edvb54
+[push]
+ default = matching
+[help]
+ autocorrect = 1
+[color]
+ ui = auto
+ diff = auto
+ status = auto
+ branch = auto
+ interactive = auto
+ grep = auto
+[alias]
+ ls = log --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=relative
+ ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat
+ summary = log --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=relative --since=last.mon
+ last = "!git ll -1"
+ lastdiff = diff --cached HEAD^
+ diffw = diff --word-diff
+ diffc = diff --cached
+