
npm与git
My_Bells
Not all heroes wear capes
展开
-
git使用
一:Git是什么?二:SVN与Git的最主要的区别?转载 2018-06-25 09:31:46 · 139 阅读 · 0 评论 -
git
Command line instructionsGit global setupgit config --global user.name "xxx"git config --global user.email "xxxxxxx"Create a new repositorygit cl原创 2018-07-05 09:20:44 · 250 阅读 · 0 评论 -
解决github访问下载速度慢,vue官网访问速度慢。
1.在浏览器中打开ping检测网站http://ping.chinaz.com/2.输入github网站地址github.com3.找出ping速度最快的那个ip4.接着我们打开本地电脑的C:\Windows\System32\drivers\etc目录,找到hosts文件5.在末尾添加 ip github.com(192.30.253.113 github.com)我这最优19...原创 2019-01-31 11:07:32 · 2763 阅读 · 0 评论 -
解决npm install安装慢的问题
国外镜像会很慢可用 get命令查看registrynpm congfig get registry原版结果为http://registry.npmjs.org用set命令换成阿里的镜像就可以了npm config set registry https://registry.npm.taobao.org再执行命令npm install或者直接执行npm install -...原创 2019-06-20 23:01:31 · 11189 阅读 · 3 评论 -
yarn.lock、package-lock.json、npm-shrinkwrap.json的理解
1. 先说下yarn下载包的流程2. npm-shrinkwrap.json 与 package-lock.json的区别与联系3. 解释与实践4. yarn.lock文件的作用5. 相关链接原创 2019-08-20 01:16:07 · 5034 阅读 · 1 评论