Tag: WordPress/テーマ
$ unzip supertheme.zip $ cd supertheme $ git init $ git add . $ git commit -m "Import supertheme 1.0" $ git tag v1.0 $ git branch upstream
$ cd wordpress $ git checkout upstream $ rm -r * $ (cd .. && unzip supertheme-1.1.zip) $ git add . $ git commit -a -m 'Import supertheme 1.1' $ git tag v1.1 $ git checkout master $ git merge upstream
#!/bin/sh set -eux themesdir=/home/tanaka/public_html/wp/wp-content/themes curname=simplicity2 newname=simplicity2.new oldname=simplicity2.old sudo rm -rf "$curname" unzip $1 sudo chown nginx.nginx -R "$curname" if [ -d "$themesdir/$oldname" ]; then echo "$themesdir/$oldname exists" sudo rm -rf "$themesdir/$oldname" fi sudo mv "$themesdir/$curname" "$themesdir/$oldname" sudo mv "$curname" "$themesdir"