|
|
|
|
|
by smt88
4299 days ago
|
|
> When did using git-based package managers become the norm? I'm a web developer, so my response was hastily written thinking about my own narrow scope. I'm sure that non-web developers can go their whole lives without interacting with git, but it's impossible for web developers. Npm (Node), Composer (PHP), and Bower (web) package managers all use git (and often GitHub itself) pretty religiously. I know that one or more of those may support other VCS repos, but git is the de facto flavor. > Are you saying you normally update your third-party libs with the latest from HEAD instead of using versioned release artifacts? Not exactly. First of all, that's what I _used_ to do before every language had its own package manager. Second, I do use versioned releases. However, I use the tagged versions that are determined by the author(s) of the library. I'm not just pulling down a bleeding-edge, un-tested library, and I don't get every single commit. |
|