09 2022 档案

摘要:1、在初始分支切出一个test分支 git checkout -b test Switched to a new branch 'test' 2、在test分支提交一个commit,用git log可以查看,有一个名为“测试”的commit commit 51d0b42e2c2b9d1fbf3370 阅读全文
posted @ 2022-09-05 14:14 coderInside 阅读(407) 评论(0) 推荐(0)
摘要:1、查看当前Node和npm版本 node -v npm -v 2、清除node的cache sudo npm cache clean -f 3、安装"n"版本管理工具 sudo npm install -g n 4、更新node版本 sudo n stable // 稳定版本 sudo n lts 阅读全文
posted @ 2022-09-04 11:51 coderInside 阅读(2435) 评论(0) 推荐(2)