Skip to content

Instantly share code, notes, and snippets.

@culy247
Last active June 2, 2023 07:40
Show Gist options
  • Save culy247/6d6069cfce62f18d64e9e62aef6f9158 to your computer and use it in GitHub Desktop.
Save culy247/6d6069cfce62f18d64e9e62aef6f9158 to your computer and use it in GitHub Desktop.
Git config
[user]
email = [email protected]
name = UserName
[credential]
helper = store
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[alias]
a = add .
aa = add --all
bv = branch -vv
br = branch
ba = branch -ra
bd = branch -d
ca = commit --amend
cb = checkout -b
cm = commit -a --amend -C HEAD
ci = commit -a -v
co = checkout
po = push origin
pu = pull origin
di = diff
ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat
ld = log --pretty=format:"%C(yellow)%h\\ %C(green)%ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=short --graph
ls = log --pretty=format:"%C(green)%h\\ %C(yellow)[%ad]%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=relative
mm = merge --no-ff
st = status --short --branch
tg = tag -a
put = push --tags
un = reset --hard HEAD
uh = reset --hard HEAD^
[color]
diff = auto
status = auto
branch = auto
[branch]
autosetuprebase = always
[safe]
directory = /path/to/directory
[pull]
rebase = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment