Last active
July 26, 2022 14:55
-
-
Save fcaldera/2f88f69a520f58e97877bb886f48077b to your computer and use it in GitHub Desktop.
Common git configuration
This file contains 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
[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