❔ Files are on my repo but not apart of my project?
.sln file, .gitignore , readme, gitattributes files are on my github but somehow not apart of my file but they are?
5 Replies
when i push only the first two folders update
but the other 4 dont
They won't update unless you make a change to that specific file
why does it still show if its being ignored
You probably changed the gitignore after the initial
git add .
You need to git rm -rf --cached
to clear all tracked files, then git add .
again, and your .gitignore
will be respected from that point onWas this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.