darrenrayner / ColmarAcademy

Codecademy Unit 8: Capstone Project - Colmar Academy
0 stars 0 forks source link

.DS_store #3

Open thecodeduchess opened 6 years ago

thecodeduchess commented 6 years ago

In the future, you want to make a GIT IGNORE File and add .DS_store to it. Git ignore means whatever files or folders you add to this particular file, will be ignored when you push everything up to git hub.

Ds store makes your project a little bulky/slower to download.

just make a new file in your project folder named: .gitignore Then open the .gitignore file in the text editor. Type the file name you don't want committed, for example:

index.html .DS_store style.css

Of course in this case, we do need the style and index files.

darrenrayner commented 6 years ago

Thanks, that is something I did not know and will certainly use it for the future. Thanks.