Skip to content

Instantly share code, notes, and snippets.

@culy247
Last active September 7, 2023 00:54
Show Gist options
  • Save culy247/396b361d0e6af5cc2ea7a6766c0f3f22 to your computer and use it in GitHub Desktop.
Save culy247/396b361d0e6af5cc2ea7a6766c0f3f22 to your computer and use it in GitHub Desktop.
[alias]
# one-line log
l = log --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=short
a = add
ap = add -p
c = commit --verbose
ca = commit -a --verbose
cm = commit -m
cam = commit -a -m
m = commit --amend --verbose
d = diff
ds = diff --stat
dc = diff --cached
s = status -s
co = checkout
cob = checkout -b
# list branches sorted by last modified
b = "!git for-each-ref --sort='-authordate' --format='%(authordate)%09%(objectname:short)%09%(refname)' refs/heads | sed -e 's-refs/heads/--'"
br = branch
p = pull
pu = push
puo = push origin
rb = rebase
# list aliases
la = "!git config -l | grep alias | cut -c 7-"
[user]
email = [email protected]
name = user
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment