summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Gayot <duskcoder@gmail.com>2014-12-22 15:54:37 +0100
committerOlivier Gayot <duskcoder@gmail.com>2014-12-22 15:54:37 +0100
commit4093af8ccf75723e12f40d8a84f59d3fbc2f6368 (patch)
tree351b178265f41a17120ede28525f26862ab32f61
parent23bad6219aaaed5d24e4e85a4fae1c382b33dc45 (diff)
git: add the configuration file for git
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
-rw-r--r--user/.gitconfig27
1 files changed, 27 insertions, 0 deletions
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