I have an rails application named as myapp
. And i have created a git repository recently
and i pushed all my files to git using git push origin master
this successfully pushed all my files. And later on i created heroku app using heroku created
on the myapp
directory.
while checking with git remote -v
i got following result
heroku git@heroku.com:myappname.git (fetch)
heroku git@heroku.com:myappname.git (push)
origin https://github.com/username/myreponame.git (fetch)
origin https://github.com/username/myreponame.git (push)
Now how can i move all my files from git to heroku. Can anyone help.