I have a directory named downloader in my Magento application's root directory.
At present it in version control. I want to make it possible that the directory and files should be version control (In the repository) to track any changes.
But I want to remove it safely from the production server and when ever I do git pull the directory should not be pulled on the server.
Also the there should be not message like deleted: downloader/ after deletion of directory from production server.
How to achieve this?