从 Git 安装 nvm 而不是 curl 或 wget 有什么好处?

What is the advantage to installing nvm from Git instead of curl or wget?

您可以使用

安装nvm

卷曲:curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash

wget: wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash

或Git:git clone https://github.com/creationix/nvm.git ~/.nvm

one article 中用户说“I like to always grab the git one if possible

我想知道的:

  1. 这三种不同的方式安装nvm有什么区别吗?

  2. 为什么用户可能更喜欢使用 Git,正如文章作者所说?

使用 githubusercontent.com 时,您必须具体说明要下载的版本,这有点麻烦。此外,它不能保证您提取的是最新的。

虽然克隆 git 本身应该保证你正在拉主分支,在正常的 git 工作流程中,它应该在新版本发布后始终是最新的。