ubuntu配置默认文本编辑器为vim,以及Git commit格式

前端之家收集整理的这篇文章主要介绍了ubuntu配置默认文本编辑器为vim,以及Git commit格式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

设置默认文本编辑器

1.

在~./bashrc中加入如下一行

export editor=vim

2.

git config –global core.editor [编辑器名字]

例如:git config –global core.editor vim

这种方法会在~./gitconfig文件增加如下信息(不敲命令,直接修改文件亦可以)


设置Git commit格式

git config –global commit.template [模板文件名]
例如: git config –global commit.template xxx_template
这种方法会在~./gitconfig文件增加如下信息(不敲命令,直接修改文件亦可以)

原文链接:https://www.f2er.com/ubuntu/351234.html

猜你在找的Ubuntu相关文章