DEV Community

Discussion on: Dungeons & Dragons Max Hit Points Calculator

Collapse
 
rachelsoderberg profile image
Rachel Soderberg

Hey, thanks for the info and tips! This was my first time posting a project as "open source" so I'm not surprised there were a couple hiccups. I'll go ahead and fix that up later today.

Collapse
 
raddevus profile image
raddevus

Glad to help. Also, if you add a .gitignore file to your project root folder you will find that the extra things like /obj/ and /bin directories and associated files are not added -- it'll only track your source files which is what you want.
Github provides a nice Visual Studio / C# .gitignore for you at:
github.com/github/gitignore/blob/m...

All you have to do is :

  1. create a text file named .gitignore in your project root
  2. copy the text from the link above
  3. paste test into your local .gitignore
  4. save

After that, your local git will ignore those files. Since you've already added them you may have to work a bit to remove them from your git repo, but it'll still help. :)