Structure of Projects in Version Control

前端 未结 9 1606
失恋的感觉
失恋的感觉 2020-11-27 04:02

I know there are at least 10 different ways to structure project in version control. I\'m curious what some methods being used are and which ones work for you. I\'ve worked

9条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-27 04:24

    What about external dependencies such a the AJAXTookit or some other 3rd party extension that's used on several projects?

    Source control is for source code, not binaries. Keep any 3rd party assemblies/jars in a separate repository. If you're working in the Java world try something like Maven or Ivy. For .Net projects a simple shared drive can work well as long as you have decent policies around how it's structured and updated.

提交回复
热议问题