Skip to content

Instantly share code, notes, and snippets.

View leosvelperez's full-sized avatar

Leosvel Pérez Espinosa leosvelperez

View GitHub Profile
@leosvelperez
leosvelperez / .gitconfig
Last active June 11, 2024 12:36
Useful Git aliases
[alias]
a = add
ap = add -p
bd = branch -D
# Removes branches already merged
bdm = "!git branch --merged | grep -v '*' | xargs -n 1 git branch -d"
c = commit
cm = commit -m
co = checkout
cob = checkout -b