-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
32 lines (29 loc) · 1.59 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
# This is a basic gitconfig template that includes some bare minimums for
# interacting with git in a workspace. The content between <Angle Brackets>
# in this file must be replaced with values appropriate to you. This can
# Be done manually or with the following series of commands run from the current
# folder:
#
# $ HOME=$(pwd) git config --global user.name "Bits the Dog"
# $ HOME=$(pwd) git config --global user.email "[email protected]"
# $ HOME=$(pwd) git config --global user.signingkey "$(git config --global user.signingkey)"
[user]
# The name you want to appear as the author of your commits
name = <YOUR NAME>
# The e-mail address that is associated to the author of your commits
email = <YOUR EMAIL>
# This next section is optional and can be omitted if you do not use ssh git
# commit signing. However, doing so is highly encouraged, and if you have not
# started using this workflow, see the onboarding docs for that:
# https://datadoghq.atlassian.net/wiki/spaces/SECENG/pages/2610300092/Project+Iota+Git+Commit+Signing+Onboarding
# # This is an ssh key that can be used to sign your commits, it should
# # be made available to your workspace via ssh agent forwarding and can be
# # seen on your laptop by issuing `git config --global user.signingkey`
# signingkey = <YOUR COMMIT SIGNING PUBLIC KEY>
# [commit]
# gpgsign = true
# [gpg]
# format = ssh
# This is a url rewrite that helps [go and maybe rust] tooling that downloads libraries from our private repos
[url "[email protected]:DataDog/"]
insteadOf = https://github.com/DataDog/