Yes! It turns out that when adding a file to a repository you can force it to override .gitignore:
git add -f <filename>
or
git add --force <filename>
Source: https://www.kernel.org/pub/software/scm/git/docs/git-add.html
Yes! It turns out that when adding a file to a repository you can force it to override .gitignore:
git add -f <filename>
or
git add --force <filename>
Source: https://www.kernel.org/pub/software/scm/git/docs/git-add.html