From 48b4884ce1ed6e2fee09a911ef02f240e8e38865 Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Sat, 19 Dec 2020 00:59:34 -0500 Subject: [PATCH] Add basic system file ignores --- languages/antlr.gitignore | 7 ++++++- languages/c.gitignore | 7 ++++++- languages/c_sharp.gitignore | 7 ++++++- languages/django.gitignore | 7 ++++++- languages/laravel.gitignore | 7 ++++++- languages/python.gitignore | 7 ++++++- languages/r.gitignore | 7 ++++++- 7 files changed, 42 insertions(+), 7 deletions(-) diff --git a/languages/antlr.gitignore b/languages/antlr.gitignore index 347864e..c6c5c9a 100644 --- a/languages/antlr.gitignore +++ b/languages/antlr.gitignore @@ -3,10 +3,15 @@ # See https://git-scm.com/docs/gitignore for documentation. # # https://git.brandon-rodriguez.com/other/gitignore - # Version 1.0.2 + # Version 1.0.3 ## +# Ignore system files. +.DS_Store +Thumbs.db + + # Ignore environment settings. .env/ .idea/ diff --git a/languages/c.gitignore b/languages/c.gitignore index a7e7310..edd6bd9 100644 --- a/languages/c.gitignore +++ b/languages/c.gitignore @@ -3,10 +3,15 @@ # See https://git-scm.com/docs/gitignore for documentation. # # https://git.brandon-rodriguez.com/other/gitignore - # Version 1.0.2 + # Version 1.0.3 ## +# Ignore system files. +.DS_Store +Thumbs.db + + # Ignore environment settings. .vs/ .vscode/ diff --git a/languages/c_sharp.gitignore b/languages/c_sharp.gitignore index 66d4c8a..fac4cb7 100644 --- a/languages/c_sharp.gitignore +++ b/languages/c_sharp.gitignore @@ -3,10 +3,15 @@ # See https://git-scm.com/docs/gitignore for documentation. # # https://git.brandon-rodriguez.com/other/gitignore - # Version 1.1.2 + # Version 1.1.3 ## +# Ignore system files. +.DS_Store +Thumbs.db + + # Ignore environment settings. .vs/ .vscode/ diff --git a/languages/django.gitignore b/languages/django.gitignore index f325ee2..5d72d5c 100644 --- a/languages/django.gitignore +++ b/languages/django.gitignore @@ -3,10 +3,15 @@ # See https://git-scm.com/docs/gitignore for documentation. # # https://git.brandon-rodriguez.com/other/gitignore - # Version 1.0.2 + # Version 1.0.3 ## +# Ignore system files. +.DS_Store +Thumbs.db + + # Ignore environment settings. .env/ .idea/ diff --git a/languages/laravel.gitignore b/languages/laravel.gitignore index 6ccf77d..bd35414 100644 --- a/languages/laravel.gitignore +++ b/languages/laravel.gitignore @@ -3,10 +3,15 @@ # See https://git-scm.com/docs/gitignore for documentation. # # https://git.brandon-rodriguez.com/other/gitignore - # Version 1.0 + # Version 1.0.1 ## +# Ignore system files. +.DS_Store +Thumbs.db + + # Ignore environment settings. .env/ .idea/ diff --git a/languages/python.gitignore b/languages/python.gitignore index 6ebd86b..57e477b 100644 --- a/languages/python.gitignore +++ b/languages/python.gitignore @@ -3,10 +3,15 @@ # See https://git-scm.com/docs/gitignore for documentation. # # https://git.brandon-rodriguez.com/other/gitignore - # Version 1.1.1 + # Version 1.1.2 ## +# Ignore system files. +.DS_Store +Thumbs.db + + # Ignore environment settings. .env/ .idea/ diff --git a/languages/r.gitignore b/languages/r.gitignore index b2bdf58..0463005 100644 --- a/languages/r.gitignore +++ b/languages/r.gitignore @@ -3,10 +3,15 @@ # See https://git-scm.com/docs/gitignore for documentation. # # https://git.brandon-rodriguez.com/other/gitignore - # Version 1.0.1 + # Version 1.0.2 ## +# Ignore system files. +.DS_Store +Thumbs.db + + # Ignore environment settings. .Rproj.user/ .Rapp.history -- GitLab