Skip to content

Instantly share code, notes, and snippets.

@tgmarinho
Created June 9, 2021 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tgmarinho/6f231bf9d3a31601709b12c10bd6404f to your computer and use it in GitHub Desktop.
Save tgmarinho/6f231bf9d3a31601709b12c10bd6404f to your computer and use it in GitHub Desktop.
Git Config Aliases
[user]
email = tgmarinho@gmail.com
name = Thiago Marinho
[alias]
co = checkout
br = branch
ci = commit
st = status
undo = reset HEAD~1 --mixed
ec = config --global -e
cob = checkout -b
cm = !git add -A && git commit -m
save = !git add -A && git commit -m 'SAVEPOINT'
wip = !git add -u && git commit -m "WIP"
undo = reset HEAD~1 --mixed
amend = commit -a --amend
fe= fetch
sc = stach
sca = stach -a
pp = git stach -pop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment