Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPB Cup
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

How to Automatically Deploy WordPress Theme Changes using GitHub and Deploy

Editorial Note: We earn a commission from partner links on WPBeginner. Commissions do not affect our editors' opinions or evaluations. Learn more about Editorial Process.

Do you want to automatically deploy WordPress theme changes to your website?

Most professional web developers use a version control system like GitHub or Bitbucket and automatically deploy their changes to staging or live sites. You can use a deployment system such as DeployHQ to act as an intermediary between your Git repository and your server.

In this article, we will show you how to automatically deploy WordPress theme changes using GitHub and Deploy.

How to automatically deploy WordPress theme changes

Why Use a Version Control System for WordPress Theme Development?

A version control system allows you to record changes to a file or set of files over time so that you can recall specific versions later. In other words, every time we change a WordPress theme template, image, or CSS file, a version control system keeps track of these changes.

For instance, let’s say you decide to run a batch of changes. If those changes cause an issue, then you can revert (or roll back) to an existing ‘version’ of our WordPress Theme.

Git is a common version control system, and allows multiple users to work on the same code base, such as a WordPress Theme. If two developers edit the same file, Git has built-in controls to deal with these issues (known as merge conflicts).

For more information, check out our beginner’s guide to using Git with WordPress.

Why Use a Deployment System?

A deployment system that integrates with services such as GitHub allows you to automatically or manually upload changes you have made to your WordPress theme.

You can see it as a one-way synchronization system. For example, if you delete a file from your WordPress Theme, you’d also have to delete it via FTP as well. With a deployment system, this is automatically done for you when you commit your code changes to GitHub.

In this article, we’ll be working with a deployment system called DeployHQ, or simply Deploy. Deploy works with other Git repository providers like Bitbucket, but we’re going to stick with GitHub for this tutorial.

Setting Up a GitHub Repository for Your WordPress Theme

First, you’ll need to set up an account on GitHub and then use the GitHub client for Windows or Mac to store changes to your WordPress Theme.

To start, you can visit the GitHub website and enter your email address to create a new account.

Sign up for a GitHub account

Next, you’ll need to enter a username and password.

GitHub will also ask you to choose email preferences.

Enter details to create a GitHub account

After that, you can scroll down and verify your account by solving a puzzle.

It’s just like reCAPTCHA on your WordPress site.

Verify your GitHub account

Once your account is verified, you will see the GitHub dashboard.

From here, you can click the ‘+’ icon at the top and select the ‘New repository’ option.

Create a new repo in GitHub

Next, you can start by setting the repository name, like your WordPress Theme’s folder name is a good idea.  

Then, you’ll need to choose whether this is a Public or Private repository. Public repositories are available for everyone to see your code, but they can’t make changes to it. Private repositories are available just for you to see.

Enter a name for new repo

Finally, you can tick the checkbox if you want to add a README file.

Once that’s done, simply click the ‘Create repository’ button.

Click the create repo button

Your GitHub repository will now be ready for use.

Install GitHub for Windows or Mac

Next, you need to put our WordPress Theme’s code into our repository. A simple way of doing this is by using the GitHub client, which installs on your computer.

Simply visit the GitHub Desktop website and download the Desktop client available for Windows and Mac.

Download the GitHub client

Once the download is complete, launch the GitHub client.

Next, you’ll need to sign in using your GitHub account. You can click the ‘Sign in to GitHub.com’ button.

Sign in to GitHub client

This will launch GitHub on your web browser.

Simply click the ‘Authorize desktop’ button to allow GitHub Desktop to access your account.

Authorize GitHub access

After that, you can open the GitHub Desktop client.

Next, you will need to configure Git. Simply select the ‘Use my GitHub account name and email address’ option and click the ‘Finish’ button.

Configure git on desktop client

Next, let’s add the GitHub repository that you created earlier.

To do this, click the ‘Clone a repository from the internet’ option.

Clone a repository

You will see a list of your GitHub repositories, including the one you created earlier.

Simply select the repository and choose where you want to store it on your computer under the ‘Local Path’ field. Once that’s done, you can click the ‘Clone’ button.

Choose a repo from GitHub to clone

You’ve now cloned (copied) your repository hosted on GitHub to our computer.  

Next, you need to add our WordPress theme code to the repository’s folder and then commit and sync this code to GitHub.

You can start by finding the folder you selected in the above step on your computer. It should have a README.md file in the folder. Depending on your computer’s settings, you may also see the hidden .git folder.

Open the readme file

When you’ve made changes to your WordPress theme’s code, simply copy and paste them into this folder.

After that, you can open the GitHub Mac or Windows app and see the files you’ve just added appear in the window:

View changes to code in GitHub desktop

You will see the changes highlighted in green. These are the changes that you have saved in the local repository, but you haven’t yet committed those changes.

Next, you will need to commit (upload) these files to GitHub. To do this, simply enter some text into the Summary box to explain the changes we’ve made and click the ‘Commit to master’ button.

Add summary and commit to master

This commits the changes you’ve made to the repository.

To upload those changes to GitHub, you can click the ‘Push origin’ button.

Click the push origin button

To check your commit has been uploaded to GitHub, visit your repository on the GitHub website. If everything works, you’ll see your code changes.

Setting Up Deploy

The final step is to make sure that any changes on your GitHub repository are pushed to your WordPress website.

DeployHQ, or Deploy, is a web-based service that will monitor changes to your GitHub repository, and automatically or manually upload just those changes to your WordPress website.

Imagine it as a connection between your code and the web server.

First, you need to visit the Deploy website and sign up for a new account. Deploy is a paid service, but it offers a free account for one project and 5 deployments per day.

DeployHQ website

After finishing signing up, you can log in to your Deploy dashboard.

From here, you can click the ‘Create a project’ button to get started.

Create a project in deploy

Next, you need to provide a name for your project.

After that, you can select GitHub as your code hosting platform.

Enter a name for project

If you scroll down, you’ll find more options like choosing a zone for your project and advanced options.

Once that’s done, click the ‘Create Project’ button to continue.

Create project in deploy

Deploy will now redirect you to GitHub.

If you are not already signed in, then you will be asked to login. After that, you will be asked to allow Deploy to access your GitHub account.

Authorize deploy with GitHub

Simply click the ‘Authorize krystal’ button to continue.

Deploy will fetch the list of your repositories from GitHub and will ask you to select a repository for this project.

Select GitHub project

Simply click on your WordPress theme repository, and Deploy will import it for you.

In the next step, Deploy will ask you to provide server information. This is where you tell Deploy how to upload files to your WordPress server.

You can start by entering a name and selecting ‘FTP‘ as the protocol option.

Enter name for your server

Next, you will need to scroll down and enter your FTP credentials.

  • Hostname: Your website’s SFTP/FTP host
  • Port: Your website host’s SFTP/FTP port (typically SFTP = 22, FTP = 21)
  • Username and Password: FTP username and password
  • Deployment Path: The path you’d navigate to before uploading your WordPress theme files. For example, public_html/example.com/wp-content/themes/MyTheme, where MyTheme is the WordPress theme you have committed to GitHub.

After entering these details, click the ‘save ‘Create Server’ button.

Enter FTP config details

Deploy will now test your server connection and if everything works correctly, then it will show you a success message.

You can now click on the ‘Deploy’ button to upload your GitHub files to your website.

Click the deploy button

You will now see the progress of deployment.

Once Deploy has finished, you will see a success message.

View deployment progress

You have successfully deployed changes from GitHub to your website using Deploy. Now, when you make changes to your WordPress theme on your computer, you need to commit them to GitHub. After that, you need to visit the Deploy website to start the deployment manually.

Let’s see how to set up automatic deployment so that any changes you commit to GitHub are automatically deployed to your website.

Setting Up Automatic Deployment

First, you need to visit your Deploy dashboard and go to the ‘Projects’ page. From here, simply click on the name of your project.

Select your project

Next, you can head to the ‘Automatic Deployments’ tab from the menu on the left.

Here, you will need to enable the option next to your server for auto-deployments.

Enable auto deployment

After that, you’ll have to copy the Webhook URL and add it to your GitHub account.

Simply log into your GitHub account in a new browser tab. Then click on your repository and head to the Settings tab. From here, you can go to the Webhooks section from the menu on the left and click the ‘Add webhook’ button.

Add webhook to GitHub

Now paste the webhook URL you copied from the Deploy server settings page in the Payload URL field.

After that, select application/x-www-form-urlencoded as the Content type from the dropdown:

Enter webhook address

Next, you can scroll down and select which events should trigger the webhook. You can use the default setting.

Once that’s done, simply click the ‘Add webhook’ button.

Click add webhook button

That’s all. Your GitHub repository will now notify Deploy when there are new changes to your repository. Deploy will then automatically implement those changes to your website.

We hope this article helped you learn how to automatically deploy WordPress theme changes Using GitHub and Deploy. You may also want to see our guide on how to create a staging environment for a WordPress site and must-have WordPress plugins for business sites.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

Disclosure: Our content is reader-supported. This means if you click on some of our links, then we may earn a commission. See how WPBeginner is funded, why it matters, and how you can support us. Here's our editorial process.

Editorial Staff

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

The Ultimate WordPress Toolkit

Get FREE access to our toolkit - a collection of WordPress related products and resources that every professional should have!

Reader Interactions

6 CommentsLeave a Reply

  1. Syed Balkhi says

    Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

  2. rambideunt says

    Is it save to put my wordpress files in the public repo in github? does it means some of my personal configuration data such as data in wp-config being exposed to public?

    • Dave Bergschneider says

      Private repo if doing the full WP installation is best practice. However best practice would to be only committing files unique to your project such as custom plugin’s or themes. The rest is just clutter. Especially since you aren’t likely uploading the database to GitHub.

      Thanks for this article, I’ve found a new workflow!

    • Robert Lyall says

      With the service being used in this article (DeployHQ), you can use the Config Files feature to avoid having to put your production credentials inside your repository.

Leave a Reply to Mohammad Fahim Cancel reply

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.