transfer code from one server to other server.
- by Kamlesh Bhure
I wanted to transfer new code into my new production server.
I have code files on my development server.
Instead of uploading files using FTP from my local machine, there is other way to transfer code from one server to other.
What I am thinking I will make zip file of whole code to be transfer and place it in webroot.
So that it would be accessible in internet with some link http://www.mydomain.com/code.tar.gz
now on the other server i will just run command
wget http://www.mydomain.com/code.tar.gz
Will this transfer done in few seconds...?
May I know is this correct approach?