Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Should I put folder .bundle under version control

I just started using bundler with rails 2.3.8. After running bundler install there is folder .bundle at the root of my project.

Should I put .bundle under version control?

like image 784
Joni Avatar asked Jul 03 '10 14:07

Joni


People also ask

Should I include NuGet packages in source control?

Instead there is one in your user directory ( %USERPROFILE%\. nuget\packages on Windows, to be specific) where it puts all packages it downloads, and projects just reference these. So the simple answer these days is no, you shouldn't.

Do we need .VS folder in git?

No, you should not add it to source control. The purpose of this folder is to move machine- and user-specific files to a central location. The explanation on the Visual Studio User Voice issue explains it well: So far, we have moved the .


1 Answers

I'd leave that out of version control. In general, adding generated files is bad - especially if they might have misleading information when someone else checks out the code. That would definitely be true in this case.

like image 62
edebill Avatar answered Oct 21 '22 02:10

edebill