Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create a new branch in Gitlab

Tags:

git

gitlab

I want to create a new work branch in gitlab. I want to be the admin of that branch. Please, someone help me learn how to create my own branch in Gitlab and keep my projects on that work branch...

like image 441
Bathakarai Avatar asked Nov 25 '22 11:11

Bathakarai


1 Answers

From the command line:

git checkout -b <branch_name>
like image 61
psilocybin Avatar answered Dec 09 '22 13:12

psilocybin