Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
488 Widoki

Do I create a production branch using GitHub commands only?

Awatar
Odrzuć
Najlepsza odpowiedź

Yes Tich 

You can create using this command

git checkout -b production

Thanks.

Awatar
Odrzuć
Autor

Thank you so much Nikhil. Is there another way besides using the command?

yes you can use like this way

git branch production

after you need to checkout on that branch

git checkout production

Autor

Noted. Once again thank you.