Force WordPress to login through SSL

Today I changed my WordPress domain to another from the hosting then I got an error with my WordPress site say Your connection is not private Found out that I enabled the require SSL for administration site login to Dashboard but my new domain not have SSL yet. Then I just temporary disable the setting in wp-config.php

How to change the source version control from SVN to Git

Today I created the Git repository from our SVN repository. Not too hard but need some techniques. Check out from SVN and push to GIT From your workspace clone the svn trunk using git svn clone git svn clone YourSvnTrunkUrl Add remote git repository for pushing git remote add origin YourGitRepoUrl Push the master (trunk) to remote server git push -u origin master To clone 1 branch from svn.