open-sauced / intro

Empowering Your Open Source Journey: From First Contribution to Project Leadership
https://opensauced.pizza/learn
Other
495 stars 96 forks source link

Feature: Remove `.DS_STORE` File and Ignore in `.gitignore` #224

Open samucodesh opened 2 weeks ago

samucodesh commented 2 weeks ago

Suggested solution

The .DS_STORE files are generated by macOS and are not needed in the repository.

  1. Delete existing .DS_STORE file

  2. Add .DS_STORE to .gitignore:

    • Add the following line to the .gitignore file: *.DS_STORE

This will prevent future .DS_STORE files from being added to the repository, keeping it clean and efficient.

adiati98 commented 2 weeks ago

I agree with the proposal because we don't need the file here. However, let's also hear from @BekahHW.

If this is a go, would you like to work on it, @samucodesh?

samucodesh commented 2 weeks ago

Hello @adiati98

If possible, I would like to work on it.

Also, i think it's a good idea to add: .idx/, .devcontainer/ and .vscode/ to the .gitignore file to prevent it from being added to the repository by mistake.