“GIT изменение мастер -филиала” Ответ

GIT изменение мастер -филиала

## 1) Rename master branch to oldmaster.
git branch -m master oldmaster
#Now there is no master branch on my local machine.

## 2) Rename my masterTemp branch to master
git branch -m masterTemp master
#The branch which was named masterTemp on my local machine is now master

## 3) Delete the branch from remote
git branch -rD master

## 4) Push the new master branch to remote
git push --force origin master
VasteMonde

git перемещение от Master в новую филиал

git stash						//you can stash the changes in the master branch .
git checkout -b newbranchname	//then checkout the branch
git stash pop					//and pop the changes here
Testy Teira

Ответы похожие на “GIT изменение мастер -филиала”

Вопросы похожие на “GIT изменение мастер -филиала”

Больше похожих ответов на “GIT изменение мастер -филиала” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования