From 4093af8ccf75723e12f40d8a84f59d3fbc2f6368 Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Mon, 22 Dec 2014 15:54:37 +0100 Subject: git: add the configuration file for git Signed-off-by: Olivier Gayot --- user/.gitconfig | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 user/.gitconfig diff --git a/user/.gitconfig b/user/.gitconfig new file mode 100644 index 0000000..7019689 --- /dev/null +++ b/user/.gitconfig @@ -0,0 +1,27 @@ +[user] + email = duskcoder@gmail.com + name = Olivier Gayot +[color] + ui = true +[alias] + st = status -s + cp = cherry-pick + co = checkout + ci = commit + amend = commit --amend + + abort = rebase --abort + skip = rebase --skip + continue = rebase --continue + + g = grep + d = diff + b = branch +[push] + default = simple + +[sendemail] + smtpserver = smtp.gmail.com + smtpserverport = 587 + smtpencryption = tls + from = duskcoder@gmail.com -- cgit v1.2.3