Upgrading Ruby Static Pro

You can clone Ruby Static Pro from our Git repository and merge updates at any time.

Using Ruby Static Pro with Git

Git allows merging changes from Ruby Static Pro into your application, enabling easy integration of new features and improvements.

Initial Setup

  1. Clone Ruby Static Pro:
    git clone [email protected]:rubystaticpro/rubystaticpro.git my-static-app
    cd my-static-app
    git remote rename origin rubystaticpro
    
  2. Create your GitHub repository.

  3. Add the new remote and push:
    git remote add origin [email protected]:your-account/your-new-repo.git
    git push -u origin main
    

Merging Updates

To incorporate updates from Ruby Static Pro:

git fetch rubystaticpro     x
git merge rubystaticpro/main