How To Rename a Branch in Git Locally and Remotely

Author: , January 31st, 2018

Rename the old branch locally: git branch -m oldBranch newBranch Delete the old branch remotely: git push origin :oldBranch Push up the new branch, and make the local branch track with the new remote branch: git push –set-upstream origin newBranch

How To Move A File Safely In PHP:

Author: , March 3rd, 2012

Safely move a file in PHP:

How To Rename A MySQL Database

Author: , December 3rd, 2011

YMMV…