0

What exactly do the debug and release files in the bin folder do? I made the mistake of tracking them when I initialized my git repository. I want to remove them now. Is it alright to remove them both or are certain changes necessary to be kept?

Přemysl Šťastný
  • 1,676
  • 2
  • 18
  • 39
mysticalstick
  • 155
  • 6
  • 21
  • Perhaps the first thing should have been to commit a '.gitignore' file. Using 'http://gitignore.io'... – Philippe Jul 19 '16 at 22:46

2 Answers2

1

The files are the compiled binary-output of your project. You do not have to track this folder.

D.J.
  • 3,644
  • 2
  • 15
  • 22
1

It is fine to remove them. They are generated each time the program is run in Visual Studio, so all you need to do is remove them from git tracking. They contain files for both release, and disputable debug respectively.

SupremeSteak1
  • 136
  • 11