How to Upgrade to the Latest Release?

  • Alexandro Martínez
    Author
    by Alexandro Martínez
    9 months ago
  • The following steps are my recommendation to constantly stay up to date with SaasRock releases.

    NOTE: There will be constant breaking changes until SaasRock is stable. This gives me the flexibility to add new features with freedom.

    💿 Create a private GitHub repository with SaasRock's latest version.

    WARNING: Don't fork SaasRock's repository because when you're no longer a SaasRock subscriber, GitHub will delete your fork.

    💿 Set SaasRock as the upstream

    git remote add upstream https://github.com/AlexandroMtzG/saasrock.git

    Or if you're an Enterprise user:

    git remote add upstream https://github.com/AlexandroMtzG/saasrock-enterprise.git

    💿 (Optional) Remove push to upstream.

    git remote set-url --push upstream no_push

    If you run git remote -v you should get something like this:

    origin  https://github.com/{YOU}/{YOUR_PRIVATE_REPO}.git (fetch)
    origin  https://github.com/{YOU}/{YOUR_PRIVATE_REPO}.git (push)
    upstream        https://github.com/AlexandroMtzG/{saasrock or saasrock-enterprise}.git (fetch)
    upstream        no_push (push)

    💿 Anytime you want to get the latest changes, run:

    git pull upstream main

    This way you decide when to pull the latest features.


    I hope this quick guide was useful! Let me know if you have any questions.

    We respect your privacy.

    This website uses cookies to help personalize your online experience. Learn more.