Skip to Content
Documentation
Starter kits
Get Pro
Introduction
Installation

Clone the Git repository

Learn how to clone the Saas UI Git repository.

In case you have redeemed your license key and accepted the Github invite, you should now have access to the Saas UI Pro Git repository.

Clone the repository

To clone the repository on your local machine, use the following command:

git clone --single-branch --branch=v3 git@github.com:saas-js/saas-ui-pro-nextjs-starter-kit.git my-project

This will clone the repository into the my-project folder, without the commit history.

Setup Git

Now that you have cloned the repository, you can setup your Git configuration.

Rename the saas-ui-pro-nextjs-starter-kit repository to upstream.

git remote rename origin upstream

The saas-ui-pro-nextjs-starter-kit repository is configured as the upstream by default. To add your own repository as the origin, use the following command:

git remote add origin git@github.com:your-username/your-repository.git

You can pull the latest changes from the upstream repository using the following command:

git pull upstream main --allow-unrelated-histories

As your codebase diverges from saas-ui-pro-nextjs-starter-kit you will run into merge conflicts eventually, so at some point it might be easier to manually copy over any changes that you want to implement.

Install dependencies

This project uses pnpm to manage dependencies, you can install all dependencies using the following command:

If you don't have pnpm installed, follow the pnpm installation guide.
pnpm
Clone the Git repository