Sale price  €0,00 Regular price  €1.000,00
  • Install: https://shopify.dev/docs/api/github-app
  • Configure for organisation and not personal GitHub account
  • Check out https://github.com/organizations/{slug}/settings/installations/{code}

 

Link Shopify to GitHub

  1. Install Shopify GitHub App: Go to shopify.dev, log in to GitHub, and install the app on your account/organization. Grant access to specific repositories.
  2. In Shopify Admin: Navigate to Online Store > Themes > Actions > Connect GitHub. Select repository and branch.
  3. Sync: Commits to connected branch update theme; admin edits commit to GitHub.

 

  • Go to GitHub repo.
  • Click "main" (or default branch) dropdown.
  • Type new branch name in "Find or create a branch...".
  • Click "Create branch: <name>" or press Enter.</name>
  • New branch is created.

 

Download theme to local and then:

shopify theme check
git init
git remote add origin https://github.com/{slug} --> fails
git add .
git commit -m "first commit" --> adjust
git push origin main


You may also like