📜  如何将 node_modules 添加到 gitignore - Shell-Bash (1)

📅  最后修改于: 2023-12-03 14:53:02.234000             🧑  作者: Mango

如何将 node_modules 添加到 gitignore - Shell-Bash

当我们使用npm安装模块时,npm会将这些模块下载并安装到node_modules目录下,但是这些模块并不需要被纳入到我们的git仓库中。因此,我们需要将node_modules添加到.gitignore文件中,以避免将这些无用的文件提交到仓库中。

以下是如何将node_modules添加到.gitignore文件中的Shell-Bash命令:

  1. 进入项目根目录并创建.gitignore文件。
cd /path/to/your/project
touch .gitignore
  1. 将node_modules添加到.gitignore文件中。
echo "node_modules/" >> .gitignore
  1. 将.gitignore文件添加到git仓库中并提交更改。
git add .gitignore
git commit -m "add .gitignore file"

现在,当你执行git push时,node_modules目录下的文件将不会被提交到远程仓库中。这可以有效地减小项目的文件大小并提高git仓库的性能。

注意事项:

如果你使用的是npm v5或更高版本,则可以使用npm自动生成的默认.gitignore文件。例如,可以在项目根目录下执行以下命令,将自动生成的.gitignore文件添加到你的仓库中。

npm init -y

然后在根目录下添加上.gitignore文件,开发者运行如上述程序即可达到目的。