LoginSignup
1
1

More than 5 years have passed since last update.

gitからテーマのzipファイルを作って、wordpressにアップロードする

Posted at

gitからテーマのzipファイルを作って、wordpressにアップロードする

gitリポジトリから、themesを格納している特定のパスだけzipファイルにして、wordpressにアップロードできるzipを作成します。

リポジトリの階層

/prj_root/wp-content/themes/example_theme
/prj_root/wp-content/themes/example_theme/index.php
/prj_root/wp-content/themes/example_theme/functions.php
などなど

git archiveコマンドでzipを作る

git archive HEAD:wp-content/themes/example_theme/ --output=example_theme.zip

ブランチを指定したい場合は、「HEAD」の部分をブランチ名に変えればOK

あとは、出来上がったexample_theme.zipをwordpressにアップロードすればOK

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1