How to update my project on git.cloudron.io with master it was forked from
-
Hello,
Stupid question, I'm not used to GitLab UI, but trying to find a way to keep my project/fork from the official Cloudron project updated to the latest changes in the CLoudron version, but can't find a way to do that for some reason. I can see how to make merge requests for Cloudron team to pull into their package which has been done before, but can't find a way to go in the opposite direction to keep mine in sync with the upstream project.
Am I just totally missing it? Is there a permission needed on my account to do that? Is the only way for me to delete my fork and make a new fork from the original project? Tried searching online for an answer but couldn't find one either for some reason.
I guess git commands on the command line will work okay though?
In my example, had made some changes to the WordPress Managed app a while back in a fork I made (just a simple text change that @girish then approved in the official app), but trying to get mine back up to date with the Cloudron-maintained one and can't seem to.
Would appreciate some help for my newbie question. haha.
-
One of the (few) benefits of Bitbucket is that it offers an option for (for syncing) where it automatically pulls in changes from the master branch. Maybe there is something similar in Gitlab as well?
@d19dotca said in How to update my project on git.cloudron.io with master it was forked from:
I guess git commands on the command line will work okay though?
That would be my recommendation. Add the original repo as a remote and then pull in changes from that. e.g.
cd your-wordpress-checkout git remote add upstream https://git.cloudron.io/cloudron/wordpress-app.git git pull --rebase upstream master