Wednesday, November 6, 2013

How to ignore unwanted files using Tortoise GIT tool


create .gitignore file in your root directory and include required unwated entires there.

For eg : I want to ignore all the class files in Model project

/EmployeeManagement/EmpModel/classes
*.obj
*.class

This will exclude displaying these files before you check-in.

No comments:

Post a Comment