NahdaaJ / PasswordManager_CSharp

A password manager project to test my OOP and database skills, using C# and MySQL.
2 stars 1 forks source link

Local files don't need to be committed #1

Open ShadAhm opened 1 year ago

ShadAhm commented 1 year ago

Hey. Just as a tip, you can keep this repo slim by keeping /bin and /obj and /.vs folders out of it :)

Simply use a .gitignore file made for VS C# projects.

Otherwise, appreciate how well you've documented this project!

NahdaaJ commented 1 year ago

Thank you!! How do I use .gitignore? Is it a folder or file that is created? I usually create my repositories through the GitHub website. Thank you so much for your feedback!!

ShadAhm commented 1 year ago

Yeah its just a file that goes at the root of your project. Usually with no filename, just a .gitignore extension. Anything (file or folder names) you put in there gets ignored by the source control.

You can write the file yourself, or just use a template other people have written. Here's one for visual studio projects : https://github.com/github/gitignore/blob/main/VisualStudio.gitignore

But since those folders have already been committed, you need to look into removing them first.

NahdaaJ commented 1 year ago

Ah okay thank you! I'll try to update my project and repo tomorrow with all the feedback I received!! Thank you so so much!!!!