diff options
| author | Thibaut Horel <thibaut.horel@gmail.com> | 2012-12-11 09:30:07 +0100 |
|---|---|---|
| committer | Thibaut Horel <thibaut.horel@gmail.com> | 2012-12-11 09:30:07 +0100 |
| commit | 8709b3f607b7e9ba5274a4fbe7c98896a209113d (patch) | |
| tree | e7008ffc511896289ae4610dd613806e6b3f6619 | |
| parent | 036653ca509975ccedf28c25273d6abc945ee6ff (diff) | |
| download | dotfiles-8709b3f607b7e9ba5274a4fbe7c98896a209113d.tar.gz | |
Add git_config
| -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 -- |
