git 常用配置
git config --global user.name "runoob" //设置用户名
git config --global user.email "test@runoob.com" //设置邮箱
ssh-keygen -t rsa -C "youremail@example.com" // 生成 SSH Key
git config --global core.autocrlf false //设置不转换换行符
git config --global core.ignorecase false // 设置区分大小写
npm 常用配置
npm config set registry https://registry.npm.taobao.org // 设置淘宝镜像
npm config set package-lock false // 设置不生成 package-lock.json 文件
- 本文链接: https://wp.cmyr.ltd/archives/git-and-npm-common-settings
- 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!
欢迎关注我的其它发布渠道
发表回复
要发表评论,您必须先登录。