git 和 npm 常用设置

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 文件

评论

发表回复