Preview:
# sincronizar el listado de ramas
git fetch -p

# ver últimos commits
git log 
# ver últimos commits bonitos
git log --pretty=oneline

# eliminar rama local que ya ha sido pusheada
git branch -d localBranchName
# eliminar rama local que aún no ha sido pusheada ni mergeada
git branch -D localBranchName
# eliminar rama remota
git push origin --delete remoteBranchName

downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter