DeLaneyBJones / SnakeHaus

0 stars 1 forks source link

Gitignore #3

Open clblamires opened 5 years ago

clblamires commented 5 years ago

Specifies intentionally untracked files to ignore when using Git

http://git-scm.com/docs/gitignore

~ .sw[mnpcod] .log .tmp .tmp. log.txt .sublime-project .sublime-workspace .vscode/ npm-debug.log*

.idea/ .ionic/ .sourcemaps/ .sass-cache/ .tmp/ .versions/ coverage/ www/ node_modules/ tmp/ temp/ platforms/ plugins/ plugins/android.json plugins/ios.json $RECYCLE.BIN/

.DS_Store Thumbs.db UserInterfaceState.xcuserstate

clblamires commented 5 years ago

Create a file called .gitignore (with the . at the beginning) and put this into your app root directory. That will remove node_modules from the repository.