diff options
| -rw-r--r-- | .git_ignore | 3 | ||||
| -rw-r--r-- | .gitconfig | 11 |
2 files changed, 14 insertions, 0 deletions
diff --git a/.git_ignore b/.git_ignore new file mode 100644 index 0000000..df3fee5 --- /dev/null +++ b/.git_ignore @@ -0,0 +1,3 @@ +*~ +\#*\# +.*.swp diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..665eaf7 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,11 @@ +[user] + name = Thibaut Horel + email = thibaut.horel@gmail.com +[color] + ui = true +[core] + editor = vim + excludesfile = ~/.git_ignore +[alias] + lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit -- + toto = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit -- |
