2018年3月1日 星期四

[Git] commit empty folder

Git 設計是不提供上傳空資料夾,故要上傳空資料夾就必須加入一個檔案至資料夾中。方法如下:

  • 在所有空資料夾中加入 .gitkeep
    find . -type d -empty -exec touch {}/.gitkeep \;
  • 根目錄下建立 .gitignore,加入
    !.gitkeep
    !.gitignore

Reference
[1] git提交空文件夹目录结构新

沒有留言:

張貼留言