I have deployed my app in remote server with capistrano and git. I'm novice with capistrano and git, and my question is:
e.g.
I make a change and add code in any file from my local project, e.g. change 2 lines in controller or model or view or css or js or routes.rb or devise.rb...etc.
before I had a ftp and replace the files via ftp, I see that this way is not good for rails.
I want to know how can I send those changes to my production remote app in my vps remote server.
I have tried:
cap deploy
but is very very slowly and overload the server. I dont think that is way is correct
I dont know if this must be doing with capistrano or with git e.g. I suposse with git is:
git remote add origin user@ip.ip.ip.ip/~/project
git push origin master
Its possible use this code for deploy changes in production app in remote server? or have I that use capistrano for make changes in app in production server?
Sorry for mi ignorance but I'm novice with rails and capistrano and git.
Thank you