Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
494 Tampilan

Do I create a production branch using GitHub commands only?

Avatar
Buang
Jawaban Terbai

Yes Tich 

You can create using this command

git checkout -b production

Thanks.

Avatar
Buang
Penulis

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

Penulis

Noted. Once again thank you.