mirror of
https://github.com/pgrondek/config.git
synced 2024-11-22 03:53:43 +00:00
[git] add git config
This commit is contained in:
parent
8aa3316aaa
commit
b7be1ac658
2
Makefile
2
Makefile
@ -1,5 +1,5 @@
|
||||
SERVER_PARTS=bash ssh vim docker terraform
|
||||
CLIENT_PARTS=i3 packages
|
||||
CLIENT_PARTS=i3 packages git
|
||||
|
||||
.PHONY: clean_install
|
||||
|
||||
|
40
git/Makefile
Normal file
40
git/Makefile
Normal file
@ -0,0 +1,40 @@
|
||||
GIT_BIN=/usr/bin/git
|
||||
PACKAGE=git
|
||||
|
||||
GIT_CONFIG=config
|
||||
GIT_CONFIG_OUT=$(HOME)/.config/git/config
|
||||
GIT_GLOBAL_CONFIG=$(HOME)/.gitconfig
|
||||
CONFIG_DIR=$(HOME)/.config/git
|
||||
|
||||
ROOT_APT=sudo aptitude
|
||||
|
||||
OUT=$(GIT_CONFIG_OUT)
|
||||
|
||||
.PHONY: clean_install
|
||||
|
||||
clean_install: clean install
|
||||
install: $(GIT_BIN) config
|
||||
clean: clean_config clean_package
|
||||
|
||||
$(GIT_BIN):
|
||||
$(ROOT_APT) install $(PACKAGE)
|
||||
|
||||
.ONESHELL:
|
||||
config: $(CONFIG_DIR) $(GIT_BIN)
|
||||
ifeq ("$(wildcard $(GIT_GLOBAL_CONFIG))","")
|
||||
rm -f $(GIT_CONFIG_OUT)
|
||||
echo "Please provide email address for git"
|
||||
read EMAIL
|
||||
git config --global user.email $${EMAIL}
|
||||
endif
|
||||
cp $(GIT_CONFIG) $(GIT_CONFIG_OUT)
|
||||
|
||||
$(CONFIG_DIR):
|
||||
mkdir -p $(CONFIG_DIR)
|
||||
|
||||
clean_package:
|
||||
$(ROOT_APT) purge $(PACKAGE)
|
||||
|
||||
clean_config:
|
||||
rm -f $(GIT_CONFIG_OUT)
|
||||
|
6
git/config
Normal file
6
git/config
Normal file
@ -0,0 +1,6 @@
|
||||
[user]
|
||||
name = Przemysław Grondek
|
||||
[help]
|
||||
autocorrect = 1
|
||||
[remotes]
|
||||
prune = true
|
Loading…
Reference in New Issue
Block a user