Can you open up your Git Config file? Either open up the file (the config
file in a hidden folder called .git
in your main project folder), and the contents should look something like this:
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = true
[remote "heroku"]
url = https://git.heroku.com/hwatest.git
fetch = +refs/heads/*:refs/remotes/heroku/*
…or you can paste in git config --list
in your project and let me know if you see something like this:
...
remote.heroku.url=https://git.heroku.com/hwatest.git
remote.heroku.fetch=+refs/heads/*:refs/remotes/heroku/*
...
(and show me what it says if it has something related to heroku?)
Basically it sounds like Heroku’s git integration was configured wrong, and I’d like to see how it was actually set up. :)