Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我将更改推送到 github 时,它只会推送更改。几KB。
git push origin
当我将相同的更改推送到heroku时。
git push heroku master
它上传所有数据,在我的例子中是 35MB。为什么是这样?我能做些什么呢?
传输的数据量git push取决于本地和远程分支的状态。如果你git push heroku master再来一次会怎样?如果自上次推送以来您的本地分支没有任何更改,则传输应该小得多。
git push