私の個人的な WordPress インストールは、GitHubのwordpress git ミラーから複製されています。2.7.1 タグをブランチ "stable" ( ) にチェックアウトしたところ、git checkout -b stable 2.7.1
それ以来正常に動作しています。WordPress 2.8 がリリースされたので、安定版ブランチを 2.8 タグに移動したいと考えています。
次のことを試しました(すべて安定版ブランチで)が、コミットごとに適用しようとすると競合が発生し、何かが正しくないようです。安定版ブランチでローカルの変更やコミットを行っていません。
git fetch
git fetch --tags
git rebase 2.8
First, rewinding head to replay your work on top of it...
Applying: Prepare the branch for the inevitable.
error: patch failed: wp-includes/version.php:8
error: wp-includes/version.php: patch does not apply
Using index info to reconstruct a base tree...
Falling back to patching base and 3-way merge...
Auto-merging wp-includes/version.php
CONFLICT (content): Merge conflict in wp-includes/version.php
Failed to merge in the changes.
Patch failed at 0001 Prepare the branch for the inevitable.
When you have resolved this problem run "git rebase --continue".
If you would prefer to skip this patch, instead run "git rebase --skip".
To restore the original branch and stop rebasing run "git rebase --abort".
安定版ブランチを 2.8 タグに「移動」するにはどうすればよいですか?