diff options
| author | Olivier Gayot <duskcoder@gmail.com> | 2014-12-22 15:54:37 +0100 | 
|---|---|---|
| committer | Olivier Gayot <duskcoder@gmail.com> | 2014-12-22 15:54:37 +0100 | 
| commit | 4093af8ccf75723e12f40d8a84f59d3fbc2f6368 (patch) | |
| tree | 351b178265f41a17120ede28525f26862ab32f61 /user/.gitconfig | |
| parent | 23bad6219aaaed5d24e4e85a4fae1c382b33dc45 (diff) | |
git: add the configuration file for git
Signed-off-by: Olivier Gayot <duskcoder@gmail.com>
Diffstat (limited to 'user/.gitconfig')
| -rw-r--r-- | user/.gitconfig | 27 | 
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  | 
