1、npm包管理器
-
安装模块 npm install
-
卸载模块 npm uninstall
-
更新模块 npm update
-
查看安装的模块 npm ls
清除npm本地缓存 npm cache clean
-
重新启动模块 npm restart
-
查看模块版本 npm version
2、yarn包管理器
查看版本 yarn –version
-
初始化新项目 yarn init
-
添加依赖包 yarn add
-
升级依赖包 yarn upgrade
-
移除依赖包 yarn remove
-
显示某个包信息 yarn info <package>
-
列出项目的所有依赖 yarn list
打印出当前 yarn 全局缓存的位置: yarn cache dir
清除缓存: yarn cache clean
指定一个或多个想要清除的包 yarn cache clean [<module_name...>]
3、git常用命令
- 初始化本地git仓库(创建新仓库)git init
- 配置用户名 git config --global user.name "xxx"
- 配置邮件 git config --global user.email
- 查看当前版本状态 git status
- 添加xyz文件至index git add xyz
- 增加当前子目录下所有更改过的文件至index git add .
- 提交 git commit -m 'xxx'
- 合并上一次提交(用于反复修改 git commit --amend -m 'xxx'
- 将add和commit合为一步 git commit -am 'xxx'
- 显示提交日志 git log
4、git上传文件的基本命令
- 把这个目录变成git可以管理的仓库 git init
- 关联到远程库 git remote add origin git@ 服务器地址
- 获取远程库与本地同步合并 git pull --rebase origin master
- 添加到暂存区里面去,如果后面接小数点“.”,意为添加文件夹下的所有文件 git add 文件名
- 把文件提交到仓库。引号内为提交说明 git commit -m '相关说明'
- 将最新的修改推送到远程仓库 git push -u origin master
- 查看改动情况 git status
- 查看在哪个位置 git branch
- 切换到分支 git checkout 分支名
- 上传到服务器 git push 服务器名 分支名
- 获取git服务器上的文件 git clone 仓库的路径
- 删除远程文件 1、git rm -r --cached 文件名 #--cached不会把本地的文件删除 2、git commit -m 'delete dir' 3、git push -u origin master
- .删除远程仓库命令 git remote rm 远程仓库名称