Skip to content

Instantly share code, notes, and snippets.

@fcaldera
Last active July 26, 2022 14:55
Show Gist options
  • Save fcaldera/2f88f69a520f58e97877bb886f48077b to your computer and use it in GitHub Desktop.
Save fcaldera/2f88f69a520f58e97877bb886f48077b to your computer and use it in GitHub Desktop.
Common git configuration
[user]
name = Fernando Caldera
email = [email protected]
[color]
ui = auto
[pull]
rebase = true
[alias]
co = checkout
br = branch
ci = commit
st = status
unstage = reset HEAD --
last = log -1 HEAD
visual = !gitk
alias = config --get-regexp '^alias\\.'
fa = fetch --all
cm = checkout master
rc = rebase --continue
[push]
autoSetupRemote = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment