Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save aliaramli/f9eb90fad5130ce8c16b9abd6ecc51b9 to your computer and use it in GitHub Desktop.
Save aliaramli/f9eb90fad5130ce8c16b9abd6ecc51b9 to your computer and use it in GitHub Desktop.
Copy files to our wordpress child theme directory
//create the directories first in our child theme
mkdir -p /var/www/our-wordpress-site/wp-content/themes/child-storefront/assets/js
mkdir -p /var/www/our-wordpress-site/wp-content/themes/child-storefront/assets/css
//copy files from our machine to the server site.
scp utils.js alia@xxx:/var/www/our-wordpress-site/wp-content/themes/child-storefront/assets/js/
scp utils.css alia@xxx:/var/www/our-wordpress-site/wp-content/themes/child-storefront/assets/css/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment