Skip to content

Instantly share code, notes, and snippets.

View Craigeniah's full-sized avatar

Craig Cooper Craigeniah

  • Virtual Crasis
  • Indiana, USA
View GitHub Profile
@ladislavsulc
ladislavsulc / add-wpcli.sh
Created October 27, 2020 17:29
Add WP CLI to Laragon
cd C:\laragon\usr\bin && curl -L -O https://raw.github.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && echo @ECHO OFF > wp.bat && echo php "%~dp0wp-cli.phar" %* >> wp.bat
@maheshwaghmare
maheshwaghmare / wp.bat
Created January 16, 2019 07:56
WP CLI wp.bat file
@ECHO OFF
php "C:\wp-cli\wp-cli.phar" %*
@noelboss
noelboss / git-deployment.md
Last active April 1, 2025 16:56
Simple automated GIT Deployment using Hooks

Simple automated GIT Deployment using GIT Hooks

Here are the simple steps needed to create a deployment from your local GIT repository to a server based on this in-depth tutorial.

How it works

You are developing in a working-copy on your local machine, lets say on the master branch. Most of the time, people would push code to a remote server like github.com or gitlab.com and pull or export it to a production server. Or you use a service like deepl.io to act upon a Web-Hook that's triggered that service.