Created
March 10, 2022 00:10
-
-
Save tgmarinho/fea3b2b814c9948fa919d2b2e3470a86 to your computer and use it in GitHub Desktop.
gitconfig
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat .gitconfig 1 ↵ tgmarinho@Thiagos-MacBook-Pro | |
[user] | |
name = Thiago Marinho | |
email = [email protected] | |
[core] | |
editor = code | |
longpaths = true | |
[diff] | |
tool = meld | |
[difftool "meld"] | |
cmd = open -W -a Meld --args \\“$LOCAL\\” \\“$PWD/$REMOTE\\“ | |
trustExitCode = true | |
[alias] | |
co = checkout | |
ci = commit | |
st = status | |
br = branch | |
hist = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short | |
type = cat-file -t | |
dump = cat-file -p |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment