Git Aliases
1 min read
[alias]
st = status -uno
ci = commit -m
cm = commit -m
cob = checkout -b
co = checkout
uncommit = reset --soft HEAD^
feature = !git fetch origin master:master && git checkout -b $1 master && : # https://stackoverflow.com/a/25915221/16851956
All of this except git feature
is self explanatory.