Skip to content

Instantly share code, notes, and snippets.

@beardlessman
Created July 12, 2018 05:06
Show Gist options
  • Save beardlessman/0951c3e016afc47733ee424a5bfb2037 to your computer and use it in GitHub Desktop.
Save beardlessman/0951c3e016afc47733ee424a5bfb2037 to your computer and use it in GitHub Desktop.
[Git] Переименование ветки (локально и удаленно)
git branch -m old_branch new_branch – переименовать локальную ветку
git push origin :old_branch – удалить старую ветку
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