Idea(二) 解决IDEA卡顿问题及相关基本配置(转)
一、IDEA太卡顿,设置使用IDEA的内存
在IDEA的安装目录下的bin目录下:
打开设置:
将idea.exe.vmoptions文件内由-server-Xms128m-Xmx512m-XX:MaxPermSize=250m-XX:ReservedCodeCacheSize=150m-ea-Dsun.
windows系统下git配置用户名和邮箱
找到你的.git的目录下,右键空白位置找到“Git Bash”呼出命令行:
输入:git config user.name "name"
---设置用户名
git config user.
Git:错误:error:src refspec master does not match any
新建立了一个远程仓库,想着把项目放上去。于是在项目目录上:
git init
然后就添加远程库
git remote add origin xxxx.git
然后就想push:
git push -u origin master
结果提示错误:
error:src refspec master does not match any
百度下,原来是说我本地没有提交任何东西,本地版本库为空, 空目录不能提交 (只进行了init, 没有add和commit)。
Undoing Merges
I would like to start writing more here about general Git tips, tricks and upcoming features. There has actually been a lot of cool stuff that has hap...
git查看某开发者在一段时间内容提交的代码摘要信息
git查看某开发者在一段时间内容提交的代码摘要信息
例如:
git log --author="zhangphil" --after="2018-05-21 00:00:00" --before="2018-05-25 ...