Skip to content

Instantly share code, notes, and snippets.

@riceboyler
Created November 5, 2020 16:00
Show Gist options
  • Save riceboyler/33337fa7b38e1448a6c372176249d39a to your computer and use it in GitHub Desktop.
Save riceboyler/33337fa7b38e1448a6c372176249d39a to your computer and use it in GitHub Desktop.
New Git Config
# This is Git's per-user configuration file.
[user]
# Please adapt and uncomment the following lines:
name = Jason Clark
email = [email protected]
[include]
path = ~/.gitconfig.aliases
[core]
editor = code --wait
[diff]
tool = vscode
[difftool "vscode"]
cmd = code --wait --diff $LOCAL $REMOTE
[filter "lfs"]
process = git-lfs filter-process
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
[push]
default = current
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment