Create private branch on remote repository in git
Asked Answered
S

2

12

I would like to build specific flow on our company git.

  1. developer create a branch on his local machine and commit there some files.
  2. dev push this branch to remote repo
  3. Other devs cannot access to this branch
  4. after few rounds off pushing dev decide to publish his changes.
  5. merge his private branch into public branch
  6. push that public branch.

In the other words - is it possible to configure private remote branch in public repository?

Spa answered 30/1, 2015 at 14:24 Comment(7)
Not an answer, but: Why do you want this? Is there some official requirement for secrecy? Is it just that devs are afraid to share their work? In general, it is helpful to be able to see each other's work in progress (helping each other out, picking up for someone who fell ill etc.).Grangerize
Guys because my pc could crash, because code does not compile but I need to save it somehow, because I need "private" part in repository for experimental features. I met this in some project. But they use SVN and set up two "streams" private for everyday development and public to deliver complied featuresSarene
@Koziołek: The question was: Why is it necessary to deny other devs access to the branch? Can't it be separate but public?Grangerize
@sleske, we would like just copy behaviour of that SVN configuration. (personally it is stupid, but we have to)Sarene
@Grangerize A typical reason for keeping your branch private is you don't want your client to see your progress, especially if you are on a fixed-price contract, but you want to regularly merge their public branch with your changes to avoid working on an obsolete code.Lindahl
@romanoza: Yes, that makes sense. However, with Git you would maintain a personal repo on your machine anyway, and you could choose not to push your work branch, making it effectively private.Grangerize
@Grangerize i'm guessing it's for risk management. the private repository serves as a back up for changes that are still a work-in-progress.Pita
T
13

The flow that is used in my team is to have complete separate repositories for each team member in addition to origin on the main git server.

  1. Dev creates local branch on local machine and commits away
  2. At the end of the day (or whenever is suitable) dev pushes to their private repo git push jdoe-private my-cool-branch
  3. Dev decides they are happy for the work to be published and possibly merged so can tidy it up and rebase it with impunity
  4. Dev pushes their branch to origin git push origin my-cool-branch

The rationale for this setup for us is to allow devs to freely rebase and avoid the problems that can arise from upstream rebasing and also to have full backups. The separate repositories are only private by convention but would be easy to add access control if required. There is a lot of duplication of data but unless your repo is really huge, this is probably not a concern.

Terrier answered 30/1, 2015 at 15:41 Comment(1)
Ok. It looks like solution. Dev have they private remote repo an just merge between that and public.Sarene
G
3

The common solution I know is to agree on "branch namespaces", by prepending some string to branch names. For example, branches that start with "private/" are for private experiments. You'd then get branches like

  • private/JohnDoe/refactoring-taxcalculation
  • private/JohnDoe/newGUILayout
  • private/JaneJones/Java8
  • private/TKirk/build-spaceship

That keeps the branches separate, and makes it clear what their purpose is. However, that way the branches are still public, because anyone can see and pull them.

If you want to restrict access to these branches based on user, you'd need to have some kind of branch-based access control. There is no such thing in core git, but some git hosting servers allow this (Atlassian Stash for example). I don't know of any server that allows these kind of private branches, but maybe there is one that allows it or lets you script a solution.

Note, however, that what you are asking for is rather unusual. The common solution is the one I outlined above.

Grangerize answered 30/1, 2015 at 14:55 Comment(2)
gitolite has conception of restricting push access for some users to some branches. Like junior developer could not push to master branch. But anyway all branches are still readableBerdichev
Surely it's enough that the branch name makes it clear that it's private? If there's someone on your team who would pull a such private branch and work with it, expecting it to stay stable, then I would say the problem is elsewhere than in your git workflow.Kismet

© 2022 - 2024 — McMap. All rights reserved.