当前位置:   article > 正文

Git及Node环境变量配置_git node 环境

git node 环境

1.1、下载并安装git到电脑

1.2、Git环境变量配置

         编辑系统环境变量 -> 高级 -> 环境变量->编辑系统变量Path -> 新建

         

    git --version  // cmd中查看版本检查 git 是否安装成功

    // 全局 git 信息配置

    git config --global user.name "用户名"  // 用户名为git账号用户名
    git config --global user.email "邮箱" // 邮箱为git账号邮箱

    git config --global user.password "password " // password 为git账号密码

    // 查看配置

    git config --list

1.3、VsCode配置

         设置->搜索 git.path -> 在settings.json中编辑->

    "git.path": "路径",  // 路径为git.exe所在文件夹 如 D:/软件/Git/bin/git.exe

   

    // 在VsCode中使用git总是要求输入用户名和密码,可以在输入用户名和密码之后输入命令

    git config --global credential.helper store

         

         

2.1、下载并安装node到电脑后新建文件夹

         在node的自定义或者默认安装目录下新建node_cache和node_global文件夹

2.2、环境变量配置

         编辑系统环境变量 -> 高级 -> 环境变量

         新建用户变量:  NODE_PATH:对应安装路径

         

         编辑系统变量Path -> 新建

          

             

2.3、依次运行命令

       node -v 查看版本

       npm config set prefix  D:\软件\node.js  // npm config set prefix + 新建的node_global文 件夹路径 

       npm config set cache  D:\软件\node.js\node_cache //npm config set cache + 新建的node_cache文件夹路径 

       npm config set registry https:\\registry.npm.taobao.org // 切换淘宝镜像

       npm config ls // 查看配置

       npm install -g cnpm // 下载cnpm

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/549610
推荐阅读
相关标签
  

闽ICP备14008679号