duanegero / CoachDee-Website

HTML and CSS code for my coaching website
0 stars 0 forks source link

Clean up git repository #1

Closed elias117 closed 4 months ago

elias117 commented 4 months ago

Hi D

These are called issues that people open on Github. They point out some fixes you could make on your code that's in this repository.

I'm opening this issue to get you to clean out unnecessary files that are being tracked in your repository. You should only include files that are necessary for the code to run properly.

The file.DS_STORE is an artifact that doesn't need to be in your repo. Please remove it by adding an entry in your .gitignore file. Should be pretty straightforward to do.

The .gitignore file is meant to store paths to files that you don't need to track in git. One such file is the .DS_STORE

To ignore it just open the .gitignore and add a line .DS_STORE to ignore this file.

Should look like this:

.DS_STORE