I add .gitignore file in my project. When I open the project on GitHub Desktop, I see some changes. Like this;
Why I see this changes. I dont changing these.
This is my .gitignore file;
I add .gitignore file in my project. When I open the project on GitHub Desktop, I see some changes. Like this;
Why I see this changes. I dont changing these.
This is my .gitignore file;
gitignore
ignores only untracked files. Your files are marked as modified - meaning they were committed in the past, and git now tracks them. To ignore them, you first need to delete them, git rm them, commit and then ignore them.