Added git config files

This commit is contained in:
Marc Sastre Rienitz
2020-05-17 20:04:18 +02:00
parent e15ad6aa30
commit a5cfcdb2f3
2 changed files with 40 additions and 0 deletions

18
.gitconfig Normal file
View File

@@ -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

22
.gitignore vendored Normal file
View File

@@ -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*