13、环境-配置git-ssh asus@WGR-PC MINGW64 ~/Desktop $ git config --global user.name "dalianpai" asus@WGR-PC MINGW64 ~/Desktop $ git config --global user.ema ...
分类:
其他好文 时间:
2020-05-25 15:39:24
阅读次数:
96
1、创建使用ts的新项目 yarn create react-app my-test-app --template typescript 2、配置tsconfig.json (1)在根目录下新建文件tsconfig.extend.json { "compilerOptions": { "baseUr ...
分类:
移动开发 时间:
2020-05-25 15:39:10
阅读次数:
455
老方法,换源: 1、编辑/etc/hosts sudo gedit /etc/hosts 2、在hosts文件末尾添加如下格式: 192.30.253.112 github.com151.101.44.249 github.global.ssl.fastly.net 3、更新DNS缓存 sudo / ...
分类:
系统相关 时间:
2020-05-25 12:49:23
阅读次数:
166
1. 配置(frist use) git config --global user.name "blancetan"git confit --global user.email "xiangli_tan@126.com" 2. 查看身份配置是否成功,显示信息一致,则成功配置身份。 3. 初始化git ...
分类:
其他好文 时间:
2020-05-25 00:18:06
阅读次数:
70
一、vue cli简要安装步骤 1. window下打开运行,输入cmd打开终端。 2. 检查node和npm的安装情况 在终端中分别输入: node version npm version 如果没有安装node和npm,需要安装一下。 3. 全局安装vue cli 在终端中输入: npm inst ...
分类:
其他好文 时间:
2020-05-24 21:29:15
阅读次数:
89
用 fileset 来过滤要删掉的目录和文件 注:includeEmptyDirs 的意思是就算文件夹是空的,也同样删除。 这样就会避免使用像 这样就会把 build 文件夹以及下面的所有子目录一起删掉。很多时候父目录是没有必要每次都删了重建的,只要清空这个文件夹就好了。 ...
分类:
其他好文 时间:
2020-05-24 20:52:04
阅读次数:
71
环境 win10 git64 1:双击git安装包 下一步下一步到完成; 2:配置git 全局用户名和邮箱 git config --global user.name "username" git config --global user.email "email" 3:克隆git仓库中的代码文件; ...
分类:
其他好文 时间:
2020-05-24 16:50:53
阅读次数:
103
1.创建用户信息 git config --global user.name 'your_name' git config --global user.email 'your_email' 注意: git config有三种情况:git config --local # 只对某个git仓库有效,默认 ...
分类:
其他好文 时间:
2020-05-24 16:44:56
阅读次数:
64
//配置vs环境变量 C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterpr ...
分类:
其他好文 时间:
2020-05-24 11:38:26
阅读次数:
59
做一个项目的时候,使用Python的Pymsql操作数据库,然后报错:Out of sort memory, consider increasing server sort buffer size 百度查了很多文章,都是同一篇文章,浪费好长时间,然后我自己结合各方说法,总结一下我的解决方法 1. 用 ...
分类:
数据库 时间:
2020-05-24 11:29:30
阅读次数:
229