Ignore changes in specific files using git -
i novice in dealing git, have repository contains several files ending in .test want know how can check changes made repository (compared local repo) while disregarding changes made in these .test files. part of batch file.
add .gitignore file root of project, , write inside:
*.test if .gitignore file exists, append *.test in end.
then add & commit .gitignore.
further information: http://git-scm.com/book/en/git-basics-recording-changes-to-the-repository#ignoring-files
Comments
Post a Comment