Previously, my .gitignore file was as follows:
... config/database.yml .DS_Store
Later I created the app_config.yml file in the configuration directory and committed it.
Now I realized that I do not need the app_config.yml file in the git repository. And I changed the .gitignore file:
... config/app_config.yml config/database.yml .DS_Store
Now that I app_config.yml , this app_config.yml file is still in my repo. I want to delete this file from my repo. How can i do this?
git gitignore
Autodidact Mar 09 '09 at 11:52 2009-03-09 11:52
source share