0

有什么方法可以在不需要项目的情况下永久删除 git 存储库。

我已经删除了这些项目,它们不再在数据库中。但是 git 存储库仍然是。如何删除这些

尤其是存储所有数据的 tbl_content。

4

1 回答 1

0

有一个清理作业可以删除其余的内容。

EXEC prc_CleanupDeletedFileContent 1
# You may have to run the following command multiple times, the last
# parameter is the batch size, if there are more items to prune than the 
# passed in number, you will have to run it multiple times
EXEC prc_DeleteUnusedFiles 1, 0, 100000

https://jessehouwing.net/tfs-clean-up-your-project-collection/

于 2019-10-02T08:01:13.157 回答