From a5cfcdb2f3220efc234e768c192918bc466e6f26 Mon Sep 17 00:00:00 2001 From: Marc Sastre Rienitz Date: Sun, 17 May 2020 20:04:18 +0200 Subject: [PATCH] Added git config files --- .gitconfig | 18 ++++++++++++++++++ .gitignore | 22 ++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 .gitconfig create mode 100644 .gitignore diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..d84262f --- /dev/null +++ b/.gitconfig @@ -0,0 +1,18 @@ +[user] + name = Marc Sastre Rienitz + email = marc.sastre@vilynx.com + +[alias] + lgb = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset%n' --abbrev-commit --date=relative --branches + + om = origin/master + od = origin/develop + +[core] + editor = nvim + excludesfile = ~/.gitignore +[filter "lfs"] + process = git-lfs filter-process + required = true + clean = git-lfs clean -- %f + smudge = git-lfs smudge -- %f diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f8288cb --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +# JetBrains IDE +/.idea/ + +# Python distribution +/dist/ +*.egg-info +/build/ +*.pyc + +# Tests & coverage +/htmlcov/ +/.pytest_cache/ +/.coverage +/.hypothesis + +# Mac temp files +.DS_Store + +# CUSTOM FILES +# API tester passwords +api_tester_passwords.json +.env*