-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgitconfig
53 lines (43 loc) · 1.65 KB
/
gitconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[color]
ui = true
[commit]
template = ~/.git-commit-template
cleanup = strip
## Git identity & tooling needs to be customized depending upon two factors:
# Linux vs Mac development environment (Windows is to be considered in the future)
# Corporate vs Personal project work
##
# *NOTE* if you are having trouble with the conditional includes
# 'git config -l' is your friend!
# determine host type by using the root directory convention
[includeIf "gitdir:/Users/"]
path = ~/.gitconfig-macos
[includeIf "gitdir:/home/"]
path = ~/.gitconfig-linux
[includeIf "gitdir:/nfs/"]
path = ~/.gitconfig-linux
# [includeIf "gitdir:C:"]
# path = ~/.gitconfig-windows
# If working in a Personal MacOS context use the personal config
# determined by the presence of my personal user ID in the path
[includeIf "gitdir:/Users/fishd/"]
path = ~/.gitconfig-personal
# If working in a Corporate MacOS context use the corporate config
# determined by the presence of my corporate user ID in the path
[includeIf "gitdir:/Users/xxxxxx/"]
path = ~/.gitconfig-corporate
# If working in a Personal Linux context use the personal config
# determined by the presence of my personal user ID in the path
[includeIf "gitdir:/home/fishd/"]
path = ~/.gitconfig-personal
# If working in a Corporate Linux context use the corporate config
# determined by the presence of Linux Developer Desktop standard path naming
[includeIf "gitdir:/home/xxxxxx/"]
path = ~/.gitconfig-corporate
[includeIf "gitdir:/nfs/"]
path = ~/.gitconfig-corporate
[url "ssh://git@github.com/"]
insteadOf = https://github.com/
# If present, include local override options
[include]
path = ~/.gitconfig_local