“Git Change Master Branch” Kod odpowiedzi

Git Change Master Branch

## 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

Zmiana ruchu git z mistrza na nowy oddział

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

Odpowiedzi podobne do “Git Change Master Branch”

Pytania podobne do “Git Change Master Branch”

Więcej pokrewnych odpowiedzi na “Git Change Master Branch” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu