forked from netspective-studios/home-creators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chezmoi.toml.example
42 lines (37 loc) · 1.81 KB
/
chezmoi.toml.example
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
[data]
[data.git.user]
name = "Shahid N. Shah"
email = "[email protected]"
[data.git.credential.helper.cache]
timeout = 2592000 # 30 days
# add [data.git.credential.helpers.static.GITHUB] if you want the following in .gitconfig:
# [credential "https://github.com"]
# helper = "!f() { echo \"[email protected]\\npassword=secret\"; }; f"
[data.git.credential.helpers.static.GITHUB]
site = "https://github.com"
username = "username"
password = "secret"
type = "GitHub Personal Access Token"
expires = "12/31/2021"
# add [data.git.credential.helpers.static.GIT_EXAMPLE_COM] if you want the following in .gitconfig:
# [credential "https://git.example.com"]
# helper = "!f() { echo \"[email protected]\\npassword=secret\"; }; f"
[data.git.credential.helpers.static.GIT_EXAMPLE_COM]
site = "https://git.example.com"
username = "[email protected]"
password = "secret"
type = "GitLab Personal Access Token"
expires = "12/31/2021"
# add [data.git.credential.helpers.env.GIT_EXAMPLE_COM] if you want the following in .gitconfig:
# [credential "https://git.example.com"]
# helper = "!f() { echo \"username=$GIT_CRED_GIT_EXAMPLE_COM_USERNAME\\npassword=$GIT_CRED_GIT_EXAMPLE_COM_PASSWORD\"; }; f"
[data.git.credential.helpers.env.GIT_EXAMPLE_COM]
site = "https://git.example.com"
env_var_name_prefix = "GIT_CRED_GIT_EXAMPLE_COM_"
# add [data.github.user.prime] if you want the following in .gitconfig:
# [url "https://gitHubUserHandle:[email protected]"]
# insteadOf = https://github.com
[data.github.user.prime]
id = 'gitHubUserHandle'
pat = 'PERSONAL_ACCESS_TOKEN_VALUE'
insteadof_in_gitconfig = "yes"