Last active
October 9, 2017 05:19
-
-
Save miya0001/6668263 to your computer and use it in GitHub Desktop.
WordPressコアに対するパッチの作り方
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
======== | |
パッチの作り方 | |
======== | |
$ mkdir wordpress | |
$ cd wordpress # ここがドキュメントルート | |
$ svn co http://develop.svn.wordpress.org/trunk/ . | |
$ svn update # 作業を行う直前に毎回実行! | |
ファイルを追加した場合は `svn add` でそのファイルを追加する。 | |
$ svn add | |
ここで修正作業や動作確認など。 | |
$ svn diff > big_patch.diff | |
======== | |
パッチの適用 | |
======== | |
$ patch -p0 < somefile.diff | |
======== | |
パッチを当てたファイル(または修正したファイル)をtrunkの最新版に戻す(パッチがボツになったときとか。^^;) | |
======== | |
# ディレクトリ全体の修正を元に戻すには以下のコマンドで | |
$ svn revert --recursive . | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment