idea jvm调优

1、背景

idea作为一个高频使用的java IDE。性能的好坏,影响着开发的心情。工欲善其事必先利其器。

……

Continue reading

git提交代码到github提示失败

1、报错信息

Connection reset by 20.205.243.166 port 22 fatal: Could not read from remote repository.  Please make sure you have the correct access rights and the repository exists.

2、处理方案

尝试将host文件中添加
192.30.255.112 github.com git
185.31.16.184 github.global.ssl.fastly.net
……

Continue reading

git基础介绍

Git配置

1
2
$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"

git config命令的--global参数,表明这台机器上的所有Git仓库都会使用这个配置,也可以对某个仓库指定不同的用户名和邮箱地址。

……

Continue reading