Git ignore issue :
https://www.reddit.com/r/Unity3D/comments/elazbl/why_is_my_gitignore_not_working/
https://stackoverflow.com/questions/32783295/unity-git-ignore-library
Git will always be
Even after you have added the files to your gitignore, Git may still know about the files you added.
Try committing your actual changes and then running the following command.
git rm -r --cached .
git add .
git commit -m "fixed untracked files"
댓글
댓글 쓰기