From 35b35ea6af4e1d2ec5899da8bae941118d7a79a3 Mon Sep 17 00:00:00 2001 From: Jay Date: Tue, 15 Sep 2020 11:55:18 +0800 Subject: [PATCH] add git config --- .gitconfig | 17 +++++++++++++++++ config => .ssh/config | 0 2 files changed, 17 insertions(+) create mode 100644 .gitconfig rename config => .ssh/config (100%) diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..e43e16c --- /dev/null +++ b/.gitconfig @@ -0,0 +1,17 @@ +# This is Git's per-user configuration file. +[user] +# Please adapt and uncomment the following lines: + name = Jay + email = jay@rtj.tw +[diff] + tool = vimdiff +[difftool] + prompt = false +[alias] + d = difftool + co = checkout + ci = commit + l = log --oneline --graph --all + ls = log --graph --pretty=format:\"%h <%an> %ar %s\" --all + st = status + br = branch diff --git a/config b/.ssh/config similarity index 100% rename from config rename to .ssh/config