From 8f2ad59ccf42c78dcf85998117a40f9878d02431 Mon Sep 17 00:00:00 2001
From: Brandon Rodriguez <brodriguez8774@gmail.com>
Date: Fri, 6 Nov 2020 21:23:59 -0500
Subject: [PATCH] Explicitly define location for "project unique" ignore lines

Should help when updating to newer versions of the gitignore.
Makes project-specific ignores more visible, so they're less likely
to be accidentally lost.
---
 languages/antlr.gitignore   | 5 ++++-
 languages/c.gitignore       | 5 ++++-
 languages/c_sharp.gitignore | 7 +++++--
 languages/django.gitignore  | 5 ++++-
 languages/python.gitignore  | 5 ++++-
 languages/r.gitignore       | 5 ++++-
 6 files changed, 25 insertions(+), 7 deletions(-)

diff --git a/languages/antlr.gitignore b/languages/antlr.gitignore
index 551074b..309f47a 100644
--- a/languages/antlr.gitignore
+++ b/languages/antlr.gitignore
@@ -3,7 +3,7 @@
  # See https://git-scm.com/docs/gitignore for documentation.
  #
  # https://git.brandon-rodriguez.com/other/gitignore
- # Version 1.0.1
+ # Version 1.0.2
  ##
 
 
@@ -60,3 +60,6 @@ output/*
 [Ll]ogs/
 *.log
 *.log.*
+
+
+# Project-specific file ignores go here.
diff --git a/languages/c.gitignore b/languages/c.gitignore
index ec6e9d8..34d4c26 100644
--- a/languages/c.gitignore
+++ b/languages/c.gitignore
@@ -3,7 +3,7 @@
  # See https://git-scm.com/docs/gitignore for documentation.
  #
  # https://git.brandon-rodriguez.com/other/gitignore
- # Version 1.0.1
+ # Version 1.0.2
  ##
 
 
@@ -33,3 +33,6 @@ vscode/
 [Ll]ogs/
 *.log
 *.log.*
+
+
+# Project-specific file ignores go here.
diff --git a/languages/c_sharp.gitignore b/languages/c_sharp.gitignore
index e8b9bd4..db3ce34 100644
--- a/languages/c_sharp.gitignore
+++ b/languages/c_sharp.gitignore
@@ -1,9 +1,9 @@
 ###
- # GitIgnore file for C# projects.
+ # GitIgnore file for C# Language projects.
  # See https://git-scm.com/docs/gitignore for documentation.
  #
  # https://git.brandon-rodriguez.com/other/gitignore
- # Version 1.1.1
+ # Version 1.1.2
  ##
 
 
@@ -56,3 +56,6 @@ bld/
 [Ll]ogs/
 *.log
 *.log.*
+
+
+# Project-specific file ignores go here.
diff --git a/languages/django.gitignore b/languages/django.gitignore
index 6405ed2..80b9777 100644
--- a/languages/django.gitignore
+++ b/languages/django.gitignore
@@ -3,7 +3,7 @@
  # See https://git-scm.com/docs/gitignore for documentation.
  #
  # https://git.brandon-rodriguez.com/other/gitignore
- # Version 1.0.1
+ # Version 1.0.2
  ##
 
 
@@ -42,3 +42,6 @@ vscode/
 # Ignore development-related Django files.
 DEBUG
 db.sqlite
+
+
+# Project-specific file ignores go here.
diff --git a/languages/python.gitignore b/languages/python.gitignore
index 21ea9d5..c34850a 100644
--- a/languages/python.gitignore
+++ b/languages/python.gitignore
@@ -3,7 +3,7 @@
  # See https://git-scm.com/docs/gitignore for documentation.
  #
  # https://git.brandon-rodriguez.com/other/gitignore
- # Version 1.1
+ # Version 1.1.1
  ##
 
 
@@ -44,3 +44,6 @@ vscode/
 *.aux
 *.synctex
 *.synctex.gz
+
+
+# Project-specific file ignores go here.
diff --git a/languages/r.gitignore b/languages/r.gitignore
index d6e7525..2660700 100644
--- a/languages/r.gitignore
+++ b/languages/r.gitignore
@@ -3,7 +3,7 @@
  # See https://git-scm.com/docs/gitignore for documentation.
  #
  # https://git.brandon-rodriguez.com/other/gitignore
- # Version 1.0
+ # Version 1.0.1
  ##
 
 
@@ -35,3 +35,6 @@
 *.aux
 *.synctex
 *.synctex.gz
+
+
+# Project-specific file ignores go here.
-- 
GitLab