-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_gitconfig.tmpl
More file actions
53 lines (44 loc) · 1.19 KB
/
Copy pathdot_gitconfig.tmpl
File metadata and controls
53 lines (44 loc) · 1.19 KB
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
# Git configuration - safe for any repository
# Always applies personal settings for DevPod, can be overridden per-repo
# Identity is gated on the .identity profile flag (see .chezmoi.toml.tmpl);
# the AGS_SHELL env guard additionally protects ags isolated shells at apply time
{{- if and .identity (not (env "AGS_SHELL")) }}
[user]
name = Austin Gregg-Smith
email = blooop@gmail.com
{{- end }}
[push]
autoSetupRemote = true
default = simple
[init]
defaultBranch = main
[alias]
com = checkout main
pom = !git pull origin main --no-edit
cam = commit -am
pomp = !git pull origin main --no-edit && git push
pushf = push --force-with-lease
[pull]
rebase = false
[rebase]
updateRefs = true
[rerere]
enabled = true
autoupdate = true
[submodule]
recurse = true
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[lfs]
fetchrecentalways = true
fetchinclude = *
[safe]
directory = /home/ags/kinisi/kinisi_ros
directory = /home/ags/kinisi/kinisi_ros
# Machine-specific git config (gh credential helper, etc.) lives here.
# This file is NOT tracked by chezmoi; entries here override the above.
[include]
path = ~/.gitconfig.local