基本配置 对git进行配置时使用 git config 命令进行操作 1. git config 的作用域,缺省等于 local git config --local #只针对某个仓库有效 git config --global #针对当前用户的所有仓库有效 git config --system ...
分类:
其他好文 时间:
2019-01-01 14:58:09
阅读次数:
175
git 常用配置全局提交用户名与邮箱git config --global user.name “Yuchen Deng”git config --global user.email 邮箱名@gmail.com中文编码支持echo “export LESSCHARSET=utf-8” > $HOME...
分类:
其他好文 时间:
2015-10-19 12:23:10
阅读次数:
170
配置文件位置: Linux: ~//gitconfig Windows: /etc/gitconfig1. git颜色配置git config --global color.diff autogit config --global color.status autogit config --gl.....
分类:
其他好文 时间:
2015-03-06 21:58:41
阅读次数:
141
Git:是一个分布式的源代码管理工具,Linux内核的代码就是用Git管理的所以它很强,也很快,和 Vss/SVN比起来本地Git初始化配置及其使用:1.初始化本地Git库:打开Git Bash命令行>>git init2. 要使用GitHub,首先需要创建SSH Key,SSH将用来加密本机与远端...
分类:
其他好文 时间:
2014-08-02 20:48:24
阅读次数:
174