My apologies in advance for any misuse of git terminology...
I have an existing phpbb site. I would like to clone their repo, apply my changes, and create my own repo, in a way that way I can apply updates from the original phpbb master branch as they make them, and so I can maintain my own customizations. I'm just not entirely sure the order in which I should go about doing this. I'm not even sure if what I want to do is a fork?
What I want:
- To be able to update my site from the phpbb master branch at my discretion.
- To have my repo private (using bitbucket).
I know the files in their master branch that I'll need to change to make the site my own. So here's how I think it should work, though it probably won't because I never get this stuff right without asking for help first:
- Clone phpbb to my local machine
- Apply my current changes
- Make a new repo on BitBucket
- And here's where I'm confused - I know I need to do something with the remote/origin repos, but most guide available should you how to do a standard fork/pull or a clone - though I want my code to be possibly updated by the origin, but I never want to update their original code.
I have a dev, several test, and a prod machine, so I'd like an easier way to keep all this code up to date.