一、仓库克隆(代码下载) 登陆GitHub页面后,进入主页,可以发现一个叫Clone Or Download的按钮。点击该按钮后,会看到一个链接,保存这个连接 在本地命令行工具,我们可以使用之前保存的链接,通过命令git clone [仓库链接]将中央代码仓库下载到本地。 使用ls命令验证本地代码仓 ...
分类:
其他好文 时间:
2021-02-25 12:21:19
阅读次数:
0
解决git clone慢 原命令:git clone https://github.com/xxx 替换为:git clone https://github.com.cnpmjs.org/xxx 解决npm install慢 换成阿里镜像源:npm config set registry https ...
分类:
其他好文 时间:
2021-02-25 12:13:34
阅读次数:
0
1、从git上clone到本地后,直接open; 2、在Project Structure中把除了resources、webapp文件之外的文件,全部打上Sources蓝标签;并把resources文件打上Resources标签 3、配置Facets 4、配置Artifacts 5、在Edit Co ...
分类:
系统相关 时间:
2021-02-22 11:55:12
阅读次数:
0
前期准备 代码从远程clone代码到本地,此时你本地代码链接一个远程仓库。比如地址:https://github.com/deerlin/cms-group.git 如需同时链接两个,可以再建立一个远程仓库。比如地址:https://gitee.com/deerlin/cms-group.git 具 ...
分类:
其他好文 时间:
2021-02-20 12:41:42
阅读次数:
0
命令行指令 Git 全局设置 git config --global user.name "Administrator" git config --global user.email "admin@example.com" 创建新版本库 git clone http://f86ec4dd880f/r ...
分类:
其他好文 时间:
2021-02-20 12:12:27
阅读次数:
0
只记录一种最简便的方法,在项目根目录下创建vue.config.js,修改module配置: 1 module.exports = { 2 outputDir: 'dist', //build输出目录 3 assetsDir: 'assets', //静态资源目录(js, css, img) 4 l ...
分类:
移动开发 时间:
2021-02-19 13:44:35
阅读次数:
0
参考资料 grpc name resolver原理及实践: https://mp.weixin.qq.com/s?__biz=MzA4ODg0NDkzOA==&mid=2247487040&idx=1&sn=35e54214535da2f2203de2b7f09010d1&source=41#wec ...
分类:
其他好文 时间:
2021-02-19 13:41:22
阅读次数:
0
将类似于 git clone https://github.com/graykode/nlp-tutorial 的命令改成 https://github.com.cnpmjs.org/graykode/nlp-tutorial 这样的,就可以了 ...
分类:
其他好文 时间:
2021-02-19 13:12:05
阅读次数:
0
go modules——HelloWorld示例 go modules 存在的意义是方便代码的共享(虽然这会使自己开发过程中有一些小小的麻烦) 开发第一步,创建一个github仓库,然后克隆到本地 首先创建一个github仓库github.com/<username>/hello,这里我的仓库地址是 ...
分类:
其他好文 时间:
2021-02-19 12:59:05
阅读次数:
0
1.ArrayList继承AbstractList,该类的父类AbstractCollection实现了Collection接口。 2.RandomAccess:是一个标识,其内部无任何定义,表名该类支持随机访问。 3.Cloneable:能被克隆,实现了clone()方法,浅拷贝。 4.Seria ...
分类:
其他好文 时间:
2021-02-18 13:46:54
阅读次数:
0