version control - Should I add third-party js code as a git submodule, or add it to my own repo? -
As far as I know, the generally accepted process of adding third-party code to a git Add as a submodule. This reduces the size of the main repo, but I would imagine having a D3 (for example) code in the main repo, when D3 will help break some code using that code.
Is there any reason why I should not just check the latest version, use it to develop my code, and put it on our own store?
I really like to use for this purpose, it allows you to keep copies of the remote repository , But still maintains the history of the repository, and pulls forward / pulls forward.
Comments
Post a Comment