Skip to main content

How to get the latest update?

The best way to update your project is by setting our repository as an upstream remote (main branch) in your Git project. This ensures you can easily pull the latest changes from the our repo and keep your project up to date.

Steps to Take the Latest Update

  1. Add Upstream Remote (skip if already done): Set the upstream remote to point to our repository:

    git remote add <UPSTREAM> https://github.com/themeselection/<OUR_REPO_NAME>.git
  2. Pull Updates from Upstream: Fetch the latest changes from the upstream repository and merge them into your local project.

    git pull <UPSTREAM> main
    Warning!

    Do not pull from the upstream repository’s dev branch. It is advisable not to pull from the dev branch as it contains ongoing work for the next version of the project, which may be unstable.

  3. Resolve Merge Conflicts (if any): If there are any conflicts, you’ll need to manually resolve the merge conflicts.

  4. Backup Recommendation: Before pulling from upstream, it is highly recommended to take a backup of your project. This ensures you can restore your previous state if any issues arise during the update process.

Following these steps will help you safely and efficiently integrate the latest updates into your project! 🎉