We work with embedded ARM Linux systems and have some SBC based products with custom hardware controlled by them. As such, we need to develop custom kernel drivers and sometimes adapt existing ones. Since we started using Subversion, the chosen strategy was to use a "vendor branch" to keep the vanilla kernels to be used and then create a branch for each product, where we would apply the required patches for the SBC and make our own modifications, resembling very much what is suggested in Manage a private Linux Kernel in Subversion
Thankfully, some months ago we decided to migrate our projects to git, so we setup a gitolite server for sharing the projects among the development team, migrating projects from SVN as we need and get more confortable with git. In the special case of the Linux kernel, we think it is interesting to have the option of developing our projects with our gitolite server as the remote, but we'd like to be able to fetch newer kernels from the official tree and eventually contribute something back when it reaches a state which allows that.
On my own machine I can see how to git clone the official kernel tree and create private branches for our products, rebasing them on newer kernels as needed (like here); but I'm kind of lost on how I should import the official kernel tree into gitolite in a way developers could push/pull from it instead of the official kernel repository, while also being able to keep it in sync with the latter.
Is this a matter of fetching updates from the official tree on our machines and pushing them back to our private gitolite server or is there a more direct approach?
EDIT: (clarifying the question)
The main problem is: although I know how to initialize an empty repository for pushing untracked code into gitolite, I'm not sure how to do that for something I cloned from another git repository, such as the official kernel tree.
Once I have a clone of it on my machine, what is the procedure to move it to the private gitolite server?
Then, how is it possible to keep this now "private" kernel tree in sync with the official one?
The idea is that developers should only push to the private tree, eventually only sending patches to the official tree, if ever.