开发者

How can I get to see the files I have uploaded to Heroku?

开发者 https://www.devze.com 2023-03-01 15:06 出处:网络
开发者_Python百科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 re
开发者_Python百科

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

0

精彩评论

暂无评论...
验证码 换一张
取 消