本文最后更新于:2023年4月24日 晚上

  1. 安装 git

    1
    yum install -y git
  2. 配置 git

    1
    2
    3
    4
    5
    git --version # 查看版本

    git config --global user.name "xxx" # 配置git
    git config --global user.email "xxx" # 配置git
    git config -l # 查看配置
  3. 安装 nvm

    通过 git 来安装 nvm

    1
    git clone https://github.com/cnpm/nvm.git ~/.nvm && cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`

    ~/.nvm 表示创建你的本地项目目录

  4. 配置 nvm 环境

    1
    echo ". ~/.nvm/nvm.sh" >> /etc/profile
  5. 读取并执行配置

    1
    source /etc/profile
  6. 查看nvm

    nvm 常用命令

    1
    nvm --version