202306-19 windows下git提交空文件夹解决 NEW 第一步:powershell 下找出所有空目录:(gci C:/Users/Administrator/Desktop/GIT代码仓库/totalProject -r | ? {$_.PSIsContainer -eq $True}) | ? {$_.GetFiles().Count + $_.GetDirectories().Count -eq 0} | select FullName第二步:windows下创建gitkeep文件:type null>.gitkeep... Read More >