-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…-includes Conditional includes
- Loading branch information
Showing
4 changed files
with
38 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ snowblocks/bash/.log | |
|
||
|
||
# +--- git ---+ | ||
snowblocks/git/gitconfig_auth | ||
snowblocks/git/gitconfig_auth_job |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,42 @@ | ||
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
# title Git Configuration + | ||
# project igloo + | ||
# repository https://github.com/arcticicestudio/igloo + | ||
# author Arctic Ice Studio + | ||
# email [email protected] + | ||
# copyright Copyright (C) 2017 + | ||
# ++++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
# +++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
# title Git Configuration + | ||
# project igloo + | ||
# repository https://github.com/arcticicestudio/igloo + | ||
# author Arctic Ice Studio + | ||
# email [email protected] + | ||
# copyright Copyright (C) 2017 + | ||
# +++++++++++++++++++++++++++++++++++++++++++++++++++++ | ||
# | ||
# [References] | ||
# Git | ||
# (https://git-scm.com/docs/git-config) | ||
# (https://git-scm.com/book/tr/v2/Customizing-Git-Git-Configuration#Colors-in-Git) | ||
# https://git-scm.com/docs/git-config | ||
# https://git-scm.com/book/tr/v2/Customizing-Git-Git-Configuration#_colors_in_git | ||
# https://git-scm.com/docs/git-config#_conditional_includes | ||
# diff-so-fancy | ||
# (https://github.com/so-fancy/diff-so-fancy#options) | ||
[include] | ||
# Includes sensible authentication data: | ||
# https://github.com/so-fancy/diff-so-fancy#options | ||
|
||
[includeIf "gitdir:~/yggdrasil/"] | ||
path = ~/.gitconfig_auth | ||
|
||
[includeIf "gitdir:~/code/bitbucket/"] | ||
path = ~/.gitconfig_auth | ||
|
||
[includeIf "gitdir:~/code/bitfroest/"] | ||
path = ~/.gitconfig_auth | ||
|
||
[includeIf "gitdir:~/code/github/"] | ||
path = ~/.gitconfig_auth | ||
|
||
[includeIf "gitdir:~/.igloo/"] | ||
path = ~/.gitconfig_auth | ||
|
||
# Includes sensible job authentication data: | ||
# - user.name <USERNAME> | ||
# - user.email <EMAIL> | ||
# - user.signingkey <SIGNINGKEY> | ||
# - user.useconfigonly true | ||
path = ~/.gitconfig_auth | ||
[includeIf "gitdir:~/code/job/"] | ||
path = ~/.gitconfig_auth_job | ||
|
||
[core] | ||
repositoryFormatVersion = 0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[user] | ||
name = Arctic Ice Studio | ||
email = [email protected] | ||
signingkey = | ||
useconfigonly = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters