美文网首页我爱编程
让Git Bash更快的一些tips

让Git Bash更快的一些tips

作者: andreaxiang | 来源:发表于2017-06-29 17:24 被阅读0次

打开 Git Bash,设置一个 npm,让 npm 下载得更快一些:

  1. 运行 npm config set loglevel http,让你知道 npm 发的每一个请求
  1. 运行 npm config set progress false,关闭那个无聊的进度条
  2. 运行 npm config set registry https://registry.npm.taobao.org/ , 从淘宝的服务器下载各种包。不过这会让你在运行 npm adduser 的时候出问题,想要恢复成原样,只需要运行 npm config delete registry 即可。
  3. 运行 touch ~/.bashrc; echo 'export PHANTOMJS_CDNURL="http://npm.taobao.org/mirrors/phantomjs"' >> ~/.bashrc 让 npm 从淘宝下载 phantomjs
  4. 运行 touch ~/.bashrc; echo 'export SASS_BINARY_SITE="https://npm.taobao.org/mirrors/node-sass"' >> ~/.bashrc 让 npm 从淘宝下载 SASS
  5. 运行 source ~/.bashrc

相关文章

  • 让Git Bash更快的一些tips

    打开 Git Bash,设置一个 npm,让 npm 下载得更快一些: 运行 npm config set log...

  • NPM淘宝加速设置

    再抄之前,打开 Git Bash,我们要设置一个 npm,让 npm 下载得更快一些 1、运行 npm confi...

  • Windows下git bash中添加wget

    Windows中git bash完全可以替代原生的cmd,但是对于git bash会有一些Linux下广泛使用的命...

  • git入门(版本控制)

    在正式开始之前 windows用户,你需要先安装好Git Bash你还需要了解一些基本的Git Bash命令行操作...

  • Window平台Git-Bash的主题配置

    通过这篇文章,可以了解到: 为什么要使用 Git-Bash,以及 Git-Bash 的优点 Git-Bash 的外...

  • git 入门

    1、git的安装 安装:不需要安装,Git Bash 内置了 Git 命令,Git Bash 还内置了以下命令:...

  • Git Bash 安装步骤

    注意:Git Bash 不是 Git,而是 Git 提供的一个 Bash。git 安装步骤如下: 下面的路径可以随...

  • Windows 上安装 Laravel Homestead

    下载和安装Git 的git bash、 virtualbox 和 vagrant 在命令行或Git Bash中使用...

  • git

    git 配置 使用git bash

  • git bash中文乱码问题解决

    修改git bash text编码打开git bash ->右键 Options ->Text(选择Locale为...

网友评论

    本文标题:让Git Bash更快的一些tips

    本文链接:https://www.haomeiwen.com/subject/iyqvcxtx.html