view gitconfig @ 164:d6bf7ed9024c

Avoid permission errors in output This happens when a non-root command runs in a dir where a file has root-only permissions (e.g. the Puppet repo)
author IBBoard <dev@ibboard.co.uk>
date Sat, 25 May 2024 15:58:34 +0100
parents 510c38f1cfc2
children
line wrap: on
line source

[user]
	name = IBBoard
	email = dev@ibboard.co.uk
[core]
	excludesfile = ~/.gitignore
[branch]
	autosetupmerge = true
[diff]
[merge]
	tool = meld
[mergetool "meld"]
	cmd = meld \\\"$BASE\\\" \\\"$LOCAL\\\" \\\"$REMOTE\\\"
[diff]
	tool = meld
[difftool "meld"]
	cmd = meld \"\" \"\"
[difftool]
	prompt = false
[push]
	default = simple
[include]
    path = ~/.gitconfig-override
[pull]
	rebase = true
[alias]
	publish = push -u origin HEAD
#	dadd = "!dvc_add() { DVC_FILES=$(echo $@ | sed 's/\( |$\)/.dvc /g'); dvc add $@ && git add .gitignore $DVC_FILES; }; dvc_add"
[init]
	defaultBranch = main