Assuming your current remote is named origin
then:
Delete the current remote reference with
git remote rm origin
Add the new remote
git remote add origin <URL to new heroku app>
push to new domain
git push -u origin master
The -u
will set this up as tracked.