view gitconfig @ 160:961186621cc8

Add optional rhg (Mercurial Rust) support Configure in hgrc and write a custom `hg prompt` that's faster that the prompt extension on a Raspberry Pi because it doesn't initialise Python on each call
author IBBoard <dev@ibboard.co.uk>
date Sat, 11 Nov 2023 20:29:16 +0000
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