How do you store third party libraries in your source control?

后端 未结 15 1569
太阳男子
太阳男子 2020-12-13 03:19

How do you store third party libraries that you use in your project in your source control?

When would you store binaries in your source control?

When would

15条回答
  •  天命终不由人
    2020-12-13 03:47

    When would you store binaries in your source control?

    I store binaries in source control when I want they ability to quickly revert back to the old version of an application. There are number of reason I would do this, those include the following:

    • Application testing in an environment that exactly matches production is not always possible.
    • The previous programmer may not have used source control or may have used it incorrectly. So it can be difficult to be sure the source code you are changing is the version that matches what the user is working with.

提交回复
热议问题