Skip to content

Instantly share code, notes, and snippets.

@glpunk
glpunk / git.sh
Last active March 28, 2019 14:58
Git Commands #GIT
# git delete branch with force
git branch -D branch_name
# git rename branch
git branch -m <oldname> <newname>
# ... or if the current branch
git branch -m <newname>
# change up stream