# my **Repository Path**: a592622272/my ## Basic Information - **Project Name**: my - **Description**: 分布式springboot应用组件 - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-17 - **Last Updated**: 2025-12-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # my #####清除空文件夹下的“.gitxxx”文件(用Git Bash Here打开执行) find ./ -type f -name '.gitxxx' -delete #####使能够上传空文件夹(用Git Bash Here打开执行) find . \( -type d -empty \) -and \( -not -regex ./\.git.* \) -exec touch {}/.gitxxx \;