ruby on rails - Git is not ignoring tmp files -
This has been a disturbing issue in the Ruby on Rail application where git these tmp / files In my .gitignore file, I have tmp / so I can not understand why they look ... here my .gitignore File for reference:
# Ignore bundler config / ignore Bundle # Ignore the default SQLite database /db/*.sqlite3/db/*.sqlite3-journal # Ignore all logfiles and tempfiles /log/*.log/tmp/private/customization/valid/cache/ # OS generated cache files Thumbs.db DS_Store This is just a minor issue which is getting annoying on my team and I thank you for any and all help!
Files git rm . Perhaps a command like this would work:
git rm -r tmp Then commit to record that you removed the files from git , And Git will stop trying to track changes in those files.
Comments
Post a Comment