Skip to content

Instantly share code, notes, and snippets.

@danielTobon43
Created May 31, 2022 20:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielTobon43/76ba0b6e2cd51154664e18395324ca46 to your computer and use it in GitHub Desktop.
Save danielTobon43/76ba0b6e2cd51154664e18395324ca46 to your computer and use it in GitHub Desktop.
Git config

.gitconfig file

[user]
	email = your email
	name = your name
[protocol "codecommit"]
	allow = always
[alias]
	lod = "log --all --oneline --decorate --graph"
[init]
	defaultBranch = main
[core]
	editor = 'code' --wait
[filter "lfs"]
	clean = git-lfs clean -- %f
	smudge = git-lfs smudge -- %f
	process = git-lfs filter-process
	required = true
[safe]
	directory = .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment