Created
March 16, 2023 13:39
-
-
Save codrineugeniu/0b745d69959e8fb0e55af670aa87bda2 to your computer and use it in GitHub Desktop.
The gitconfig I use
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
# This is Git's per-user configuration file. | |
[user] | |
# Please adapt and uncomment the following lines: | |
name = <name> | |
email = <email> | |
[core] | |
editor = vim | |
[color "branch"] | |
current = yellow bold | |
local = green bold | |
remote = cyan bold | |
[alias] | |
a = add --all | |
b= branch | |
c = commit | |
co = checkout | |
f = fetch | |
l = log --oneline | |
lg = log --oneline --graph --decorate | |
p = pull | |
s = status |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment