Can gitlab build a branch that can't be seen by anyone but himself?

can gitlab build a branch that can"t be seen by anyone but yourself?

Git
Jun.07,2022

clipboard.png

if it is a warehouse, you can see it by default

if it's a public warehouse and you want to build a branch, shouldn't you fork a warehouse for yourself and then mention it on your own branch so that you can see it

?

create a new branch local locally. When the branch is in the local warehouse and needs to be merged into the dev branch, it is also merged into the local dev branch, and then when pushing to the remote dev branch, if you do not push your local branch to the remote warehouse, others will not be able to see your local branch.

but in fact, you are working on collaborative development in different copies of the same warehouse, so others can also view the content of your dev branch by seeing the history of your submission in the submission record of the remote local branch. If other people with project development rights do not see the history, then there will be something wrong with git.


actually what I want to implement is that a branch is hidden from some users

Menu