Skip to content

Instantly share code, notes, and snippets.

@haythamdouaihy
Forked from lttlrck/gist:9628955
Last active June 11, 2018 15:05
Show Gist options
  • Save haythamdouaihy/cf179c4a564ed81ef933474affc58768 to your computer and use it in GitHub Desktop.
Save haythamdouaihy/cf179c4a564ed81ef933474affc58768 to your computer and use it in GitHub Desktop.
git rename local and remote branch
# 1. rename local branch
git branch -m new_branch
# 2. delete old branch from remote
git push origin :old_branch
# 3. push & create new branch to upstream
git push --set-upstream origin new_branch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment