1

I would like to ask if there is a software that could help me in mantaining and managing my Wordpress+Plugin modified version.

The problem is that I have a certain number of hacks made to the core and to some plugins I am using, and at every update of a plugin or the core I have to remember to save my hacks and merge with the new source.

I am using Notepad++ and WinMerge for these tasks.

Do you know a software or do you have any suggestions that could help me in improve my manual workflow process.

Thank you in advance, for the help

1 Answer 1

3

You need to start using version control such as Subversion / Git (i.e. TortoiseSVN client) for windows.

You can then maintain your code as a "branch" and keep the wordpress updates in the trunk, when you want to release you "merge" the branch into the trunk and then "tag" the release.

There will be a learning curve involved in this, however I do recommend version control going forward, as it's easy to forget those changes you made xMonths ago, but not with version control when you can historically jump back in time to that revision you made and see exactly what you did.

3
  • @Oneiroi thank you, and do you know if exists and IDE that supports PHP and Subversion/Git?
    – Drake
    Commented Feb 5, 2010 at 12:48
  • @marco.ragogna Eclipse will I suggest using the Yoxos service here: eclipsesource.com/en/downloads/eclipse-galileo-download to customize your eclipse for download. You can see a very quick screen cast on how to do this I have created here: screencast.com/t/Njc0YzMyYWQ
    – Oneiroi
    Commented Feb 5, 2010 at 14:17
  • Thank you for the info, probably is not easy as I tought, but I will try.
    – Drake
    Commented Feb 8, 2010 at 22:10

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .