Win10下修改git全部配置文件方法

前言

在win10下不能快速的找到相关的配置文件,不像linux下 直接在home目录下就有.gitconfig.
其实win10下的git也是一样都存在的,仅仅是路径修改了而已。还有更简单的配置方法,不论全局或局部,直接打开config文件。

git配置

git配置有2种:全局, 局部
下面就介绍下这些方法。

win10全局配置git

git命令配置

git config --global user.name "youName"
git config --global user.email youemialName@example.com

全局配置路径

那global对应的 ,gitconfig文件在哪里呢?
一般都在 你自己的User目录下,如我win10 User目录是:

C:\Users\Administrator\.gitconfig

Win10局部配置

如果仅仅是对你某个 git工程设置不同的配置文件,那么简单,git config就在该工程的
.git/config文件中

git命令配置

git config user.name "youName"
git config user.email youemialName@example.com

局部配置路径

那对应的 ,gitconfig文件在哪里呢?
一般都在 你自己项目的

.git/config

快速打开git config

现有快速打开git config的方法,直接使用–edit 选项
使用方法:

git config [--global] --edit

快速clone Git Hub中的工程

git clone [--depth=14] https://xxxx/xxx.git

常用的也就是 git clone + 路径。但是其中有个选项 –depth

其中的 –depth=14 选项,告诉gitHub 仅仅pull down 最近的14条commits
这样你的download 又快 又小。
缺点就是没有全部的commit信息,但已足够!!

参考资料

http://stackoverflow.com/questions/2114111/where-does-git-config-global-get-written-to

你可能感兴趣的:(杂谈)