我的本地 svn 存储库中是否存在意外“svn checkout”的遗留问题?
Is there a any leftovers of an accidental “svn checkout ” to my locally svn Repository?
svn
结帐后会保存一些信息吗?
我所做的步骤:
svn checkout home/different_location_than_original_svn_folder
- 删除这个新文件夹,因为我不想在这个重复的版本中这样做 -
rm -rf home/different_location_than_original_svn_folder
now did i revert the situation exactly like it was before I
accidentally made svn checkout
? or should I do anything more ?
Subversion doesn't track either the state or the existence of working
copies on the server,
SVN 存储库不存储有关签出的信息。因此,删除 VM 中的完整签出文件夹会撤消此操作。 Revert 在 SVN 中用于不同的上下文。使用还原可以撤消本地 checkout/update-location.
中的所有更改
svn
结帐后会保存一些信息吗?
我所做的步骤:
svn checkout home/different_location_than_original_svn_folder
- 删除这个新文件夹,因为我不想在这个重复的版本中这样做 -
rm -rf home/different_location_than_original_svn_folder
now did i revert the situation exactly like it was before I accidentally made
svn checkout
? or should I do anything more ?
Subversion doesn't track either the state or the existence of working copies on the server,
SVN 存储库不存储有关签出的信息。因此,删除 VM 中的完整签出文件夹会撤消此操作。 Revert 在 SVN 中用于不同的上下文。使用还原可以撤消本地 checkout/update-location.
中的所有更改