How can I get to see the files I have uploaded to Heroku?
How can I get to see the files I have uploaded to Heroku?
You can clone it using the same URL you used to push the code: git clone git@heroku.com:your-app.git
.
After a git push, your remote tracking branches should be up top date with what is on the server.
git log origin/master
should show you the latest that was pushed up if you are using the master branch.
Hope this helps
精彩评论