tags folder getting ignored #12965
-
Hi folks. I have a nextjs project that I am building, and for some reason, If I were to copy the contents of the I haven't modified my
Thank you for any help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You may have another git config somewhere in your system that is ignoring a folder called If the file is being ignored, you will see an output like
If you see this then you have two solutions: find the .gitignore file (you should also look at |
Beta Was this translation helpful? Give feedback.
You may have another git config somewhere in your system that is ignoring a folder called
tags
. Try to manually add these files withgit add pages/tags/[tag].js
If the file is being ignored, you will see an output like
If you see this then you have two solutions: find the .gitignore file (you should also look at
.git/info/exclude
and thecore.excludesfile
config) and remove thetags
folder, or add the files with the-f
flag:git add -f pages/tags/[tag].js