Skip to content

How to commit and push to wordpress.org

Amit Gupta edited this page Jun 23, 2016 · 3 revisions

Pushing changes to wordpress plugins SVN

git svn dcommit

It'll ask for password or username & password you use to login on wordpress.org

Once your changes are commit to trunk then make a tag

git tag v8.1.4

git svn tag v8.1.4

You can check here to confirm it is created properly

But if you have done some changes directly in wordpress then they need to be merged to git repo first. For that;

git svn rebase

Trouble shooting

git info

If above commands gives "Unable to determine upstream SVN information from HEAD history" then you will have to merge to trunk. For this

git rebase --onto trunk master~3 master

This link is useful And this for all complete steps without troubleshooting

Clone this wiki locally