Git-newbie here. How can I ignore the tracking of files in git, especially for folder. I tried to use git rm but it was manual works
>Solution :
You can create a file named .gitignore inside your project directory and add the folders/files that not intended to be tracked.
For files, only include the filename, such as foo.py
For folders, use "/" as prefix and suffix, such as /foo/
One item per line