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.
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.