Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Jaco Kotzee
Courses Plus Student 20,157 PointsHow do I ignore a file locally with GIT?
I have two files that I work with locally that I don't want to commit to the tree whatsoever. It's my local database settings and it will mess up the master tree if I push that to the remote repo.
What can I do?
1 Answer

Liam Linacre
Courses Plus Student 386 PointsYou can add it to your .gitignore file.
In your root folder, create a file named .gitignore (touch .gitignore
) and add your paths to it.
Example .gitignore:
/config/app.php
/config/database.php
See: Ignoring Files
When you run git status
after this you'll notice they aren't in the list of new files.
If they are already in the repository and you don't want to commit your changes, you can run git update-index --assume-unchanged config/db.php
.
This will ignore all your changes to that particular file.
Jaco Kotzee
Courses Plus Student 20,157 PointsJaco Kotzee
Courses Plus Student 20,157 PointsThank you Liam Linacre. That worked for me. :)
Liam Linacre
Courses Plus Student 386 PointsLiam Linacre
Courses Plus Student 386 PointsIf you mark this as the answer, it will appear marked in the forums and may help other people.