SVN有没有办法多次提交而不用每次都更新?

Is there a way in SVN to commit multiple times without updating each time?

我来自 git,现在我必须使用 SVN。有没有办法,我可以在代码中提交更改而无需每次都将其上传到服务器?就像:

pull something
commit something
/*little bit later*/
pull something
commit something
push

所以我想提交多项更改并一次上传所有更改。

不,你不能在使用 Tortoise SVN 时做到这一点。 https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow

参考以上link

In Git, Developers start by cloning the central repository. In their own local copies of the project, they edit files and commit changes as they would with SVN; however, these new commits are stored locally—they’re completely isolated from the central repository. This lets developers defer synchronizing upstream until they’re at a convenient break point. But in SVN, when we commit changes it will update the central repository

在 SVN 中,您不能这样做。 一次完成所有更改(任务)并将代码提交到服务器。