From 62dc1c0cc441a531b374ef926d29cd1c14debb1c Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Tue, 4 Dec 2012 08:58:43 +0100 Subject: [PATCH] add git config files --- Makefile | 2 +- gitconfig | 11 +++++++++++ gitignore_global | 2 ++ 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 gitconfig create mode 100644 gitignore_global diff --git a/Makefile b/Makefile index 92acff6..b6b32c4 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ APATH := $(realpath .) RPATH := $(subst $(wildcard ~/),,$(APATH)) FILES := bin -DOTFILES := aliases bash* conky* flexget vim* xbindkeysrc Xmodmap zsh* +DOTFILES := aliases bash* conky* flexget git* vim* xbindkeysrc Xmodmap zsh* .PHONY: install $(FILES) $(DOTFILES) install: $(FILES) $(DOTFILES) diff --git a/gitconfig b/gitconfig new file mode 100644 index 0000000..595b374 --- /dev/null +++ b/gitconfig @@ -0,0 +1,11 @@ +[user] + email = ram-z@chakra-project.org + name = Samir Benmendil +[core] + excludesfile = /home/ramsi/.gitignore_global +[alias] +[color] + ui = auto + diff = auto +[push] + default = simple diff --git a/gitignore_global b/gitignore_global new file mode 100644 index 0000000..0a7d8b1 --- /dev/null +++ b/gitignore_global @@ -0,0 +1,2 @@ +# backup files +*~ -- 2.48.1