I have worked with two branches, master and v.2.0. I did allot of changes to v.2.0 and now I tried to push it to Heroku but nothing changed.
I have commited all files and now I cant push it to Heroku, because it says everything is up to date.
I have tried this command:
git push heroku v.2.0:master
I get this message
Everything up-to-date
What to do?
I tend to trust Git that everything is up-to-date. Are any commits returned by
git log master..v.2.0?If you merged
v.2.0intomaster, it seems likely that they both refer to the same commit.