views:

44

answers:

2

Hi!
I make some changes in local files, how can I deploy the new version?
if I type git push heroku master, it's say everything up to date, but the application wasn't changed.

+3  A: 

You probably need to commit your changes first.

Run git commit -a -m "updated some files"

then run git push....

webdestroya
+1  A: 

So you’re on a git repo with a remote repo named heroku?

Did you commit your changes, and afterwards push? They have to be commited locally so you can push them.

When you clone a repository with git the remote repository you cloned from will be added as “origin”, then a simple git push will push to the origin. If that’s not the case, you can use the name of another/your remote repository you added first, or it’s URL.

Also see the doc for git push: http://www.kernel.org/pub/software/scm/git/docs/git-push.html

Kissaki