cmd 常用命令
d: 进入对象系统盘
cd text 打开对应目录
cd + tab 自动补全打开目录
cd.. //跳转到上一层目录
ctrl +c 终止命令
cls 清除窗口
MD aa 当前目录下创建一个目录aa
del aa.txt 删除某一个文件
rm -rf . ode_modules 删除node_modules (此命令是unnix环境上的,cmd和powershell上不管用,可以在gitbrash上用)
rd aa 删除aa文件夹
dir 显示当前目录下所有子目录
ipconfig #查看自己的ip
ping 10.32.15.71 cha
npm 常用命令
方法一:
npm config get registry 查看当前配置源
修改淘宝镜像地址
npm config set registry http://registry.npm.taobao.org/
还原默认镜像地址
npm config set registry https://registry.npmjs.org/
方法二 设置npm源
2.1 安装nrm npm install -g nrm
2.2 列出出所有源 nrm ls
2.3 使用源 nrm use taobao
2.4 测试访问速度 nrm test taobao
gitbrash 常用
reset 清空屏幕
exit 可以直接退出窗口,就不会再鼠标按窗口上的来关闭窗口了
git reset --hard ff07016 git本地仓库回滚到对应提交的位置