码迷,mamicode.com
首页 > 其他好文 > 详细

.gitignore文件的使用

时间:2021-02-23 14:18:35      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:生成   module   repo   yarn   npm   code   err   vsc   tor   

我们一般会在项目根目录加上.gitignore文件,但是有些初始的项目并没有这个文件,于是需要我们主动增加这个文件。

文件的参考内容如下:

.DS_Store
node_modules/
/dist/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
/test/unit/coverage/
/test/e2e/reports/
selenium-debug.log

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln

该文件屏蔽了node_modules(依赖)、dist(编译生成的代码)、.vscode(vscode生成的文件)、.idea(idea生成的文件)等文件的上传。

 

.gitignore文件的使用

标签:生成   module   repo   yarn   npm   code   err   vsc   tor   

原文地址:https://www.cnblogs.com/luoyihao/p/14430938.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!