解决git push时的too_many_commits提示
提示内容
push时报错如下: Sorry, you were trying to upload xxxxxx commits in one push
原因分析
这个应该是因为在提交规则里配置了 一次只允许提交一个 commit,这样当 icode 上有 commit 没有合入时&…
一、安装
sudo apt install vim 二、VIM两种模式 - 命令状态/编辑状态
1.1 进入/退出VIM
进入VIM
vim 退出vim
:q <enter>
2.2 根目录下添加配置文件
window下创建vimrc类型文件内容如下: set nu
set cursorline
set hlsearch
set tabstop4
使用Wins…