Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odpovědět
484 Zobrazení

Do I create a production branch using GitHub commands only?

Avatar
Zrušit
Nejlepší odpověď

Yes Tich 

You can create using this command

git checkout -b production

Thanks.

Avatar
Zrušit
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.